We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c4e6a9 commit 739a556Copy full SHA for 739a556
README.md
@@ -127,15 +127,17 @@ public partial class MainWindow
127
Now you can create fantastic apps, e.g. with one button:
128
129
```xml
130
-<ui:UiWindow
+<ui:FluentWindow
131
...
132
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml">
133
- <Grid>
134
- <ui:Button
135
- Content="Hello World"
136
- Icon="Fluent24"/>
137
- </Grid>
138
-</ui:UiWindow>
+ <StackPanel>
+ <ui:TitleBar Title="WPF UI"/>
+ <ui:Card Margin="8">
+ <ui:Button Content="Hello World"
+ Icon="{ui:SymbolIcon Fluent24}" />
+ </ui:Card>
139
+ </StackPanel>
140
+</ui:FluentWindow>
141
```
142
143
## Special thanks
0 commit comments