Back to Devexpress

CheckEdit.Content Property

wpf-devexpress-dot-xpf-dot-editors-dot-checkedit-f36d4a6c.md

latest3.8 KB
Original Source

CheckEdit.Content Property

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

Declaration

csharp
public object Content { get; set; }
vb
Public Property Content As Object

Property Value

TypeDescription
Object

An object that represents the editor’s content.

|

Remarks

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

xml
<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

xml
<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

xml
<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

xml
<dxe:CheckEdit Content="DXCheckEdit" Margin="10,0" />

wpf-richedit-document-encryption/CS/DXRichEdit_Encryption/MainWindow.xaml#L30

xml
<dxe:CheckEdit x:Name="openFileCheckEditBox"
               Content="Open resulting file"
               IsChecked="True"

See Also

ContentTemplate

CheckEdit Class

CheckEdit Members

DevExpress.Xpf.Editors Namespace