Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DataLayoutControl.TabbedGroupMarkEnd Property

Specifies a symbol that labels the end of a tabbed group within this DataLayoutControl.

Namespace: DevExpress.Xpf.LayoutControl

Assembly: DevExpress.Xpf.LayoutControl.v24.2.dll

NuGet Package: DevExpress.Wpf.LayoutControl

#Declaration

public static char TabbedGroupMarkEnd { get; set; }

#Property Value

Type Description
Char

A Char value that labels the end of a tabbed group within this DataLayoutControl.

#Remarks

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; }

To implement your own custom syntax and replace the default opening and closing ‘{‘ and ‘}’ characters with your custom symbols, use the static DataLayoutControl.TabbedGroupMarkStart and TabbedGroupMarkEnd properties.

See Also