@@ -37,11 +37,38 @@ A UI framework using [ant design](https://ant.design/docs/spec/introduce) langua
37
37
xmlns:Ant="clr-namespace:AntWpf.Controls;assembly=AntWpf"
38
38
39
39
<StackPanel Grid.Row="1" VerticalAlignment="Center" MinWidth="300" HorizontalAlignment="Center">
40
- <TextBox Ant:Input.Placeholder="Place holder" Margin="0,10"/>
41
- <PasswordBox Ant:Input.Placeholder="PassworBox" Ant:Input.Eyeable="True"/>
40
+ <TextBox Ant:Input.Placeholder="Place holder" Margin="0,10"/>
41
+ <PasswordBox Ant:Input.Placeholder="PassworBox" Ant:Input.Eyeable="True"/>
42
+ <ComboBox Margin="0,10" >
43
+ <ComboBoxItem Content="Itemm 1"/>
44
+ <ComboBoxItem Content="Itemm 3"/>
45
+ <ComboBoxItem Content="Itemm 4"/>
46
+ </ComboBox>
42
47
</StackPanel>
43
48
```
44
-
49
+ ![ Inputs] ( https://github.com/mumtozbekov/AntWpf/blob/master/AntWpf/images/check_radios.png?raw=true )
50
+ ```
51
+ <StackPanel Grid.Column="1" Orientation="Horizontal" VerticalAlignment="Center" MinWidth="300" HorizontalAlignment="Center">
52
+ <CheckBox Margin="5,0" Content="Checked" IsChecked="True"/>
53
+ <CheckBox Margin="5,0" Content="UnChecked"/>
54
+ <CheckBox Margin="5,0" Content="Disabled" IsEnabled="False"/>
55
+ </StackPanel>
56
+ <StackPanel Grid.Column="1" Orientation="Horizontal" VerticalAlignment="Center" MinWidth="300" Margin="0,12" HorizontalAlignment="Center">
57
+ <Ant:Switch Margin="5,0" UnCheckedContent="0" Content="1" IsChecked="True"/>
58
+ <Ant:Switch Margin="5,0" UnCheckedContent="UnChecked" IsChecked="True" Content="Checked"/>
59
+ <Ant:Switch Margin="5,0" IsEnabled="False"/>
60
+ <Ant:Switch Margin="5,0" IsChecked="True" Loading="True"/>
61
+ </StackPanel>
62
+ <StackPanel Grid.Column="1" Orientation="Horizontal" VerticalAlignment="Center" MinWidth="300" Margin="0,12" HorizontalAlignment="Center">
63
+ <RadioButton Margin="5,0" GroupName="0" Content="Checked" IsChecked="True"/>
64
+ <RadioButton Margin="5,0" GroupName="0" Content="UnChecked" />
65
+ <RadioButton Margin="5,0" GroupName="0" Content="Disabled" IsEnabled="False" />
66
+ </StackPanel>
67
+ ```
68
+ ![ Inputs] ( https://github.com/mumtozbekov/AntWpf/blob/master/AntWpf/images/icons.png?raw=true )
69
+ ```
70
+ <Ant:AntIcon Key="{AntCloudOutlined}" Margin="4" Height="32" HorizontalAlignment="Center" Width="32"/>
71
+ ```
45
72
[ ![ AntDesign] ( https://img.shields.io/nuget/dt/AntWpf )] ( https://www.nuget.org/packages/AntWpf/ )
46
73
[ ![ AntDesign] ( https://img.shields.io/badge/License-MIT-blue?style=flat-square )] ( https://github.com/Mumtozbekov/AntWpf/blob/master/AntWpf/LICENSE.txt )
47
74
0 commit comments