Skip to content

Commit ea2cc3f

Browse files
authored
Update README.md
1 parent 1993959 commit ea2cc3f

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

README.md

+30-3
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,38 @@ A UI framework using [ant design](https://ant.design/docs/spec/introduce) langua
3737
xmlns:Ant="clr-namespace:AntWpf.Controls;assembly=AntWpf"
3838
3939
<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>
4247
</StackPanel>
4348
```
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+
```
4572
[![AntDesign](https://img.shields.io/nuget/dt/AntWpf)](https://www.nuget.org/packages/AntWpf/)
4673
[![AntDesign](https://img.shields.io/badge/License-MIT-blue?style=flat-square)](https://github.com/Mumtozbekov/AntWpf/blob/master/AntWpf/LICENSE.txt)
4774

0 commit comments

Comments
 (0)