mirror of
https://gitcode.com/gh_mirrors/se/Semi.Avalonia
synced 2026-04-16 06:06:36 +08:00
misc: remove unnecessary demo.
This commit is contained in:
@@ -9,12 +9,6 @@
|
|||||||
mc:Ignorable="d">
|
mc:Ignorable="d">
|
||||||
<ScrollViewer HorizontalScrollBarVisibility="Auto">
|
<ScrollViewer HorizontalScrollBarVisibility="Auto">
|
||||||
<StackPanel HorizontalAlignment="Left" Spacing="20">
|
<StackPanel HorizontalAlignment="Left" Spacing="20">
|
||||||
<StackPanel Orientation="Horizontal">
|
|
||||||
<CheckBox BorderThickness="10" BorderBrush="Gray" Background="LightBlue">Border</CheckBox>
|
|
||||||
<CheckBox BorderThickness="10" BorderBrush="Gray" Background="LightBlue" />
|
|
||||||
<CheckBox Theme="{StaticResource SimpleCheckBox}" IsThreeState="True" BorderThickness="10"
|
|
||||||
BorderBrush="Gray" Background="LightBlue" />
|
|
||||||
</StackPanel>
|
|
||||||
<TextBlock Text="CheckBox" />
|
<TextBlock Text="CheckBox" />
|
||||||
<StackPanel Orientation="Horizontal">
|
<StackPanel Orientation="Horizontal">
|
||||||
<CheckBox>Unchecked</CheckBox>
|
<CheckBox>Unchecked</CheckBox>
|
||||||
@@ -35,14 +29,23 @@
|
|||||||
<TextBlock Text="SimpleCheckBox" />
|
<TextBlock Text="SimpleCheckBox" />
|
||||||
<StackPanel Orientation="Horizontal">
|
<StackPanel Orientation="Horizontal">
|
||||||
<CheckBox Theme="{StaticResource SimpleCheckBox}" />
|
<CheckBox Theme="{StaticResource SimpleCheckBox}" />
|
||||||
<CheckBox Theme="{StaticResource SimpleCheckBox}" IsChecked="True" />
|
<CheckBox IsChecked="True" Theme="{StaticResource SimpleCheckBox}" />
|
||||||
<CheckBox Theme="{StaticResource SimpleCheckBox}" IsChecked="{x:Null}" IsThreeState="True" />
|
<CheckBox
|
||||||
|
IsChecked="{x:Null}"
|
||||||
|
IsThreeState="True"
|
||||||
|
Theme="{StaticResource SimpleCheckBox}" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<StackPanel Orientation="Horizontal">
|
<StackPanel Orientation="Horizontal">
|
||||||
<CheckBox Theme="{StaticResource SimpleCheckBox}" IsEnabled="False" />
|
<CheckBox IsEnabled="False" Theme="{StaticResource SimpleCheckBox}" />
|
||||||
<CheckBox Theme="{StaticResource SimpleCheckBox}" IsEnabled="False" IsChecked="True" />
|
<CheckBox
|
||||||
<CheckBox Theme="{StaticResource SimpleCheckBox}" IsEnabled="False" IsChecked="{x:Null}"
|
IsChecked="True"
|
||||||
IsThreeState="True" />
|
IsEnabled="False"
|
||||||
|
Theme="{StaticResource SimpleCheckBox}" />
|
||||||
|
<CheckBox
|
||||||
|
IsChecked="{x:Null}"
|
||||||
|
IsEnabled="False"
|
||||||
|
IsThreeState="True"
|
||||||
|
Theme="{StaticResource SimpleCheckBox}" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<TextBlock Margin="0,16" Text="CardCheckBox" />
|
<TextBlock Margin="0,16" Text="CardCheckBox" />
|
||||||
<StackPanel Orientation="Horizontal">
|
<StackPanel Orientation="Horizontal">
|
||||||
|
|||||||
Reference in New Issue
Block a user