wpf-devexpress-dot-xpf-dot-editors-dot-checkedit-f36d4a6c.md
Gets or sets a text displayed next to check box glyph. This is a dependency property.
Namespace : DevExpress.Xpf.Editors
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public object Content { get; set; }
Public Property Content As Object
| Type | Description |
|---|---|
| Object |
An object that represents the editor’s content.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the Content property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
wpf-scheduler-highlight-time-intervals/CS/SchedulerCellTemplate/MainWindow.xaml#L16
<dxlc:LayoutControl DockPanel.Dock="Right" Orientation="Vertical" VerticalAlignment="Top" Padding="0" MinWidth="200">
<dxe:CheckEdit Content="Highlight Lunch Hours" IsChecked="{Binding HighlightLunchHours, Mode=TwoWay}" Margin="4,0,0,0"/>
<dxlc:LayoutItem Label="Lunch Start">
wpf-charts-custom-draw-chart-series-points/CS/CustomDrawChart/MainWindow.xaml#L13
<StackPanel Grid.Row="0" Grid.Column="0">
<dxe:CheckEdit Name="chbCustomDraw" Content="Custom Draw" IsChecked="True"
Checked="chbCustomDraw_Checked" Unchecked="chbCustomDraw_Unchecked" />
wpf-richedit-use-docvariable-fields/CS/MainWindow.xaml#L18
<Button Name="btnMailMerge" Content="Mail Merge" Margin="5" Click="btnMailMerge_Click" />
<dxe:CheckEdit Name="chkShowCodes" Content="Show field codes" Checked="chkShowCodes_Checked" Unchecked="chkShowCodes_Unchecked" />
</StackPanel>
wpf-use-devexpress-theme-in-applications/CS/DevExpress.Examples.ThemeSwitcher/MainWindow.xaml#L43
<dxe:CheckEdit Content="DXCheckEdit" Margin="10,0" />
wpf-richedit-document-encryption/CS/DXRichEdit_Encryption/MainWindow.xaml#L30
<dxe:CheckEdit x:Name="openFileCheckEditBox"
Content="Open resulting file"
IsChecked="True"
See Also