66 lines
3.7 KiB
XML
66 lines
3.7 KiB
XML
<UserControl x:Class="AntdWpfDemo.Views.ProgressView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="600"
|
|
d:DesignWidth="930">
|
|
|
|
<ScrollViewer>
|
|
<Grid Margin="16 0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<StackPanel>
|
|
<Label Content="Progress" Style="{StaticResource Ant.H1}" />
|
|
<TextBlock Style="{StaticResource Ant.P}" Text="A simple text popup tip." />
|
|
|
|
<Label Content="When To Use" Style="{StaticResource Ant.H2}" />
|
|
<TextBlock Style="{StaticResource Ant.P}" Text="The tip is shown on mouse enter, and is hidden on mouse leave. The Tooltip doesn't support complex text or operations.
To provide an explanation of a button/text/operation. It's often used instead of the html title attribute." />
|
|
|
|
<Label Content="Examples" Style="{StaticResource Ant.H2}" />
|
|
</StackPanel>
|
|
<Grid Grid.Row="1">
|
|
<Grid.Resources>
|
|
<Style TargetType="antd:AntButton">
|
|
<Setter Property="Margin" Value="8 0 0 8" />
|
|
</Style>
|
|
</Grid.Resources>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<StackPanel Margin="8 0">
|
|
<antd:CodeBox Title="Arrow pointing at the center">
|
|
<antd:CodeBox.Description>进度条</antd:CodeBox.Description>
|
|
<antd:CodeBox.Content>
|
|
<StackPanel Height="180">
|
|
<Slider x:Name="Slider"
|
|
Margin="0,0,0,10"
|
|
Maximum="100"
|
|
Minimum="0" />
|
|
<ProgressBar Margin="0,0,0,10" Value="{Binding ElementName=Slider, Path=Value}" />
|
|
<ProgressBar Margin="0,0,0,10" IsIndeterminate="True" />
|
|
<UniformGrid>
|
|
<ProgressBar MaxWidth="80"
|
|
Value="{Binding ElementName=Slider, Path=Value}"
|
|
Style="{StaticResource Ant.CircularProgressBar}" />
|
|
<ProgressBar MaxWidth="80"
|
|
IsIndeterminate="True"
|
|
Style="{StaticResource Ant.CircularProgressBar}" />
|
|
</UniformGrid>
|
|
</StackPanel>
|
|
</antd:CodeBox.Content>
|
|
<antd:CodeBox.Code><ProgressBar Value="30" Margin="0,0,0,10"/>\n\n
|
|
<ProgressBar IsIndeterminate="True" Margin="0,0,0,10"/>\n\n
|
|
<ProgressBar MaxWidth="100" Value="50" Style="{StaticResource Ant.CircularProgressBar}"/></antd:CodeBox.Code>
|
|
</antd:CodeBox>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Grid>
|
|
</ScrollViewer>
|
|
</UserControl> |