命名调整

This commit is contained in:
GG Z
2025-07-12 23:31:32 +08:00
parent 4d35cadb56
commit 6d96da6f90
88 changed files with 3975 additions and 2763 deletions

View File

@@ -25,7 +25,7 @@
</StackPanel>
<Grid Grid.Row="1">
<Grid.Resources>
<Style TargetType="antd:Button">
<Style TargetType="antd:AntButton">
<Setter Property="Margin" Value="0 0 8 12" />
</Style>
</Grid.Resources>
@@ -40,10 +40,10 @@
</antd:CodeBox.Description>
<antd:CodeBox.Content>
<WrapPanel Orientation="Horizontal">
<antd:Button Type="Primary" Content="Primary" />
<antd:Button Content="Default" />
<antd:Button Type="Dashed" Content="Dashed" />
<antd:Button Type="Danger" Content="Danger" />
<antd:AntButton Type="Primary" Content="Primary" />
<antd:AntButton Content="Default" />
<antd:AntButton Type="Dashed" Content="Dashed" />
<antd:AntButton Type="Danger" Content="Danger" />
</WrapPanel>
</antd:CodeBox.Content>
<antd:CodeBox.Code>
@@ -64,12 +64,12 @@
</antd:CodeBox.Description>
<antd:CodeBox.Content>
<WrapPanel Orientation="Horizontal">
<antd:Button Type="Primary" Content="Primary" />
<antd:Button Content="Default" Size="Large" />
<antd:Button Type="Dashed" Content="Dashed" />
<antd:Button Type="Danger" Content="Danger" />
<antd:Button Type="Primary" Icon="search" Shape="Circle" />
<antd:Button Type="Primary" Icon="search" Content="Search" />
<antd:AntButton Type="Primary" Content="Primary" />
<antd:AntButton Content="Default" Size="Large" />
<antd:AntButton Type="Dashed" Content="Dashed" />
<antd:AntButton Type="Danger" Content="Danger" />
<antd:AntButton Type="Primary" Icon="search" Shape="Circle" />
<antd:AntButton Type="Primary" Icon="search" Content="Search" />
</WrapPanel>
</antd:CodeBox.Content>
<antd:CodeBox.Code>
@@ -91,12 +91,12 @@
</antd:CodeBox.Description>
<antd:CodeBox.Content>
<WrapPanel Orientation="Horizontal">
<antd:Button Type="Primary" Content="Loading" Loading="True" />
<antd:Button Type="Primary" Content="Loading" Loading="True" Size="small" />
<antd:Button x:Name="Click1" Type="Primary" Content="Click Me!" Loading="{Binding Loading1}" />
<antd:Button x:Name="Click2" Type="Primary" Content="Click Me!" Icon="poweroff" Loading="{Binding Loading2}" />
<antd:Button Shape="Circle" Loading="True" />
<antd:Button Type="Primary" Shape="Circle" Loading="True" />
<antd:AntButton Type="Primary" Content="Loading" Loading="True" />
<antd:AntButton Type="Primary" Content="Loading" Loading="True" Size="small" />
<antd:AntButton x:Name="Click1" Type="Primary" Content="Click Me!" Loading="{Binding Loading1}" />
<antd:AntButton x:Name="Click2" Type="Primary" Content="Click Me!" Icon="poweroff" Loading="{Binding Loading2}" />
<antd:AntButton Shape="Circle" Loading="True" />
<antd:AntButton Type="Primary" Shape="Circle" Loading="True" />
</WrapPanel>
</antd:CodeBox.Content>
<antd:CodeBox.Code>
@@ -121,14 +121,14 @@
</antd:CodeBox.Description>
<antd:CodeBox.Content>
<WrapPanel Orientation="Horizontal">
<antd:Button Type="Primary" Icon="search" Shape="Circle" />
<antd:Button Type="Primary" Icon="search" Content="Search" />
<antd:Button Icon="search" Shape="Circle" />
<antd:Button Icon="search" Content="Search" />
<antd:Button Type="Dashed" Icon="search" Shape="Circle" />
<antd:Button Type="Dashed" Icon="search" Content="Search" />
<antd:Button Type="Danger" Icon="search" Shape="Circle" />
<antd:Button Type="Danger" Icon="search" Content="Search" />
<antd:AntButton Type="Primary" Icon="search" Shape="Circle" />
<antd:AntButton Type="Primary" Icon="search" Content="Search" />
<antd:AntButton Icon="search" Shape="Circle" />
<antd:AntButton Icon="search" Content="Search" />
<antd:AntButton Type="Dashed" Icon="search" Shape="Circle" />
<antd:AntButton Type="Dashed" Icon="search" Content="Search" />
<antd:AntButton Type="Danger" Icon="search" Shape="Circle" />
<antd:AntButton Type="Danger" Icon="search" Content="Search" />
</WrapPanel>
</antd:CodeBox.Content>
<antd:CodeBox.Code>
@@ -152,16 +152,16 @@
</antd:CodeBox.Description>
<antd:CodeBox.Content>
<WrapPanel Orientation="Horizontal">
<antd:Button Type="Primary" Content="Primary" />
<antd:Button Type="Primary" Content="Primary(disabled)" IsEnabled="False" />
<antd:Button Content="Default" />
<antd:Button Content="Default(disabled)" IsEnabled="False" />
<antd:Button Type="Dashed" Content="Dashed" />
<antd:Button Type="Dashed" Content="Dashed(disabled)" IsEnabled="False" />
<antd:AntButton Type="Primary" Content="Primary" />
<antd:AntButton Type="Primary" Content="Primary(disabled)" IsEnabled="False" />
<antd:AntButton Content="Default" />
<antd:AntButton Content="Default(disabled)" IsEnabled="False" />
<antd:AntButton Type="Dashed" Content="Dashed" />
<antd:AntButton Type="Dashed" Content="Dashed(disabled)" IsEnabled="False" />
<StackPanel Background="#BEC8C8">
<WrapPanel Margin="8 8 8 0">
<antd:Button Content="Ghost" Ghost="True" />
<antd:Button Content="Ghost(disabled)" Ghost="True" IsEnabled="False" />
<antd:AntButton Content="Ghost" Ghost="True" />
<antd:AntButton Content="Ghost(disabled)" Ghost="True" IsEnabled="False" />
</WrapPanel>
</StackPanel>
</WrapPanel>
@@ -192,10 +192,10 @@
<antd:CodeBox.Content>
<StackPanel Background="#BEC8C8">
<WrapPanel Margin="16 26 16 16" Orientation="Horizontal">
<antd:Button Type="Primary" Content="Primary" Ghost="True" />
<antd:Button Content="Default" Ghost="True" />
<antd:Button Type="Dashed" Content="Dashed" Ghost="True" />
<antd:Button Type="Danger" Content="Danger" Ghost="True" />
<antd:AntButton Type="Primary" Content="Primary" Ghost="True" />
<antd:AntButton Content="Default" Ghost="True" />
<antd:AntButton Type="Dashed" Content="Dashed" Ghost="True" />
<antd:AntButton Type="Danger" Content="Danger" Ghost="True" />
</WrapPanel>
</StackPanel>
</antd:CodeBox.Content>