wpf-devexpress-dot-xpf-dot-layoutcontrol-dot-datalayoutcontrol-a09c24d0.md
Specifies a symbol that labels the beginning of a tabbed group within this DataLayoutControl.
Namespace : DevExpress.Xpf.LayoutControl
Assembly : DevExpress.Xpf.LayoutControl.v25.2.dll
NuGet Package : DevExpress.Wpf.LayoutControl
public static char TabbedGroupMarkStart { get; set; }
Public Shared Property TabbedGroupMarkStart As Char
| Type | Description |
|---|---|
| Char |
A Char value that labels the beginning of a tabbed group within this DataLayoutControl.
|
To create a tabbed group within the DataLayoutControl you have to wrap this group’s name with ‘{‘ and ‘}’ characters when using the DisplayAttribute.GroupName attribute. For example, the following code creates a tabbed group called ‘My Tabbed Group’ that contains 2 tabs (‘Tab 1’ and ‘Tab 2’) with 2 items in each.
[Display(GroupName = "{My Tabbed Group}/Tab 1"), DataType(DataType.PhoneNumber)]
public string Phone1 { get; set; }
[Display(GroupName = "{My Tabbed Group}/Tab 1")]
public string Email1 { get; set; }
[Display(GroupName = "{My Tabbed Group}/Tab 2"), DataType(DataType.PhoneNumber)]
public string Phone2 { get; set; }
[Display(GroupName = "{My Tabbed Group}/Tab 2")]
public string Email2 { get; set; }
<Display(GroupName := "{My Tabbed Group}/Tab 1"), DataType(DataType.PhoneNumber)> _
Public Property Phone1() As String
Get
End Get
Set
End Set
End Property
<Display(GroupName := "{My Tabbed Group}/Tab 1")> _
Public Property Email1() As String
Get
End Get
Set
End Set
End Property
<Display(GroupName := "{My Tabbed Group}/Tab 2"), DataType(DataType.PhoneNumber)> _
Public Property Phone2() As String
Get
End Get
Set
End Set
End Property
<Display(GroupName := "{My Tabbed Group}/Tab 2")> _
Public Property Email2() As String
Get
End Get
Set
End Set
End Property
To implement your own custom syntax and replace the default ‘{‘ and ‘}’ characters with your custom symbols, use the static TabbedGroupMarkStart and DataLayoutControl.TabbedGroupMarkEnd properties.
See Also