-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathDefinitionBase.xml
121 lines (112 loc) · 7.76 KB
/
DefinitionBase.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<Type Name="DefinitionBase" FullName="System.Windows.Controls.DefinitionBase">
<TypeSignature Language="C#" Value="public abstract class DefinitionBase : System.Windows.FrameworkContentElement" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract DefinitionBase extends System.Windows.FrameworkContentElement" FrameworkAlternate="netframework-3.0;netframework-3.5;netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1" />
<TypeSignature Language="DocId" Value="T:System.Windows.Controls.DefinitionBase" />
<TypeSignature Language="VB.NET" Value="Public MustInherit Class DefinitionBase
Inherits FrameworkContentElement" />
<TypeSignature Language="F#" Value="type DefinitionBase = class
 inherit FrameworkContentElement" />
<TypeSignature Language="C++ CLI" Value="public ref class DefinitionBase abstract : System::Windows::FrameworkContentElement" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit DefinitionBase extends System.Windows.FrameworkContentElement" FrameworkAlternate="windowsdesktop-10.0;windowsdesktop-3.0;windowsdesktop-3.1;windowsdesktop-5.0;windowsdesktop-6.0;windowsdesktop-7.0;windowsdesktop-8.0;windowsdesktop-9.0" />
<AssemblyInfo>
<AssemblyName>PresentationFramework</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Windows.FrameworkContentElement</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Windows.Localizability(System.Windows.LocalizationCategory.Ignore)]</AttributeName>
<AttributeName Language="F#">[<System.Windows.Localizability(System.Windows.LocalizationCategory.Ignore)>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Defines the functionality required to support a shared-size group that is used by the <see cref="T:System.Windows.Controls.ColumnDefinitionCollection" /> and <see cref="T:System.Windows.Controls.RowDefinitionCollection" /> classes. This is an abstract class.</summary>
<remarks>To be added.</remarks>
<altmember cref="P:System.Windows.Controls.Grid.IsSharedSizeScope" />
<altmember cref="T:System.Windows.Controls.ColumnDefinition" />
<altmember cref="T:System.Windows.Controls.RowDefinition" />
</Docs>
<Members>
<Member MemberName="SharedSizeGroup">
<MemberSignature Language="C#" Value="public string SharedSizeGroup { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string SharedSizeGroup" />
<MemberSignature Language="DocId" Value="P:System.Windows.Controls.DefinitionBase.SharedSizeGroup" />
<MemberSignature Language="VB.NET" Value="Public Property SharedSizeGroup As String" />
<MemberSignature Language="F#" Value="member this.SharedSizeGroup : string with get, set" Usage="System.Windows.Controls.DefinitionBase.SharedSizeGroup" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::String ^ SharedSizeGroup { System::String ^ get(); void set(System::String ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>PresentationFramework</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a value that identifies a <see cref="T:System.Windows.Controls.ColumnDefinition" /> or <see cref="T:System.Windows.Controls.RowDefinition" /> as a member of a defined group that shares sizing properties.</summary>
<value>A <see cref="T:System.String" /> that identifies a shared-size group.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
Columns and rows that participate in size-sharing do not respect <xref:System.Windows.GridUnitType.Star> sizing. In the size-sharing scenario, <xref:System.Windows.GridUnitType.Star> sizing is treated as <xref:System.Windows.GridUnitType.Auto>.
<xref:System.Windows.Controls.Grid> size-sharing does not work if you set <xref:System.Windows.Controls.Grid.IsSharedSizeScope%2A> to `true` within a resource template and you define <xref:System.Windows.Controls.DefinitionBase.SharedSizeGroup%2A> as outside that template.
The <xref:System.Windows.Controls.DefinitionBase.SharedSizeGroup%2A> property value must satisfy the following rules:
- Must not be empty.
- Must only consist of letters, digits, and underscore characters.
- Must not start with a numeric value.
<a name="dependencyPropertyInfo_SharedSizeGroup"></a>
## Dependency Property Information
| Item | Value |
|-----------------------------------|--------------------------------------------------------|
|Identifier field|<xref:System.Windows.Controls.DefinitionBase.SharedSizeGroupProperty>|
|Metadata properties set to `true`|<xref:System.Windows.FrameworkPropertyMetadata.Inherits%2A>|
]]></format>
</remarks>
<altmember cref="P:System.Windows.Controls.Grid.IsSharedSizeScope" />
</Docs>
</Member>
<Member MemberName="SharedSizeGroupProperty">
<MemberSignature Language="C#" Value="public static readonly System.Windows.DependencyProperty SharedSizeGroupProperty;" />
<MemberSignature Language="ILAsm" Value=".field public static initonly class System.Windows.DependencyProperty SharedSizeGroupProperty" />
<MemberSignature Language="DocId" Value="F:System.Windows.Controls.DefinitionBase.SharedSizeGroupProperty" />
<MemberSignature Language="VB.NET" Value="Public Shared ReadOnly SharedSizeGroupProperty As DependencyProperty " />
<MemberSignature Language="F#" Value=" staticval mutable SharedSizeGroupProperty : System.Windows.DependencyProperty" Usage="System.Windows.Controls.DefinitionBase.SharedSizeGroupProperty" />
<MemberSignature Language="C++ CLI" Value="public: static initonly System::Windows::DependencyProperty ^ SharedSizeGroupProperty;" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>PresentationFramework</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<AssemblyVersion>7.0.0.0</AssemblyVersion>
<AssemblyVersion>8.0.0.0</AssemblyVersion>
<AssemblyVersion>9.0.0.0</AssemblyVersion>
<AssemblyVersion>10.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Windows.DependencyProperty</ReturnType>
</ReturnValue>
<Docs>
<summary>Identifies the <see cref="P:System.Windows.Controls.DefinitionBase.SharedSizeGroup" /> dependency property.</summary>
<remarks>To be added.</remarks>
<altmember cref="P:System.Windows.Controls.DefinitionBase.SharedSizeGroup" />
</Docs>
</Member>
</Members>
</Type>