| 123456789101112131415161718192021 |
- <UserControl x:Class="MuchInfo.Chart.Infrastructure.Controls.BooleanEditor"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d">
- <Border BorderBrush="LightGray"
- BorderThickness="0"
- CornerRadius="4">
- <Grid x:Name="LayoutRoot">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="auto" />
- </Grid.ColumnDefinitions>
- <CheckBox x:Name="chkItem"
- Margin="5,4,5,0"
- Checked="chkItem_Checked"
- ClickMode="Press"
- Unchecked="chkItem_Unchecked" />
- </Grid>
- </Border>
- </UserControl>
|