61 lines
3.2 KiB
XML
61 lines
3.2 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:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:antd="https://github.com/ShrlAlgo/AntdWpf"
|
|
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 Style="{StaticResource Ant.H1}" Content="Progress" />
|
|
<TextBlock Style="{StaticResource Ant.P}" Text="A simple text popup tip." />
|
|
|
|
<Label Style="{StaticResource Ant.H2}" Content="When To Use" />
|
|
<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 Style="{StaticResource Ant.H2}" Content="Examples" />
|
|
</StackPanel>
|
|
<Grid Grid.Row="1">
|
|
<Grid.Resources>
|
|
<Style TargetType="antd:Button">
|
|
<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="150">
|
|
<Slider x:Name="Slider" Margin="0,0,0,10" Maximum="100" Minimum="0"/>
|
|
<ProgressBar Value="{Binding ElementName=Slider,Path=Value}" Margin="0,0,0,10"/>
|
|
<ProgressBar IsIndeterminate="True" Margin="0,0,0,10"/>
|
|
<ProgressBar MaxWidth="80" Value="{Binding ElementName=Slider,Path=Value}" Style="{StaticResource Ant.CircularProgressBar}"/>
|
|
</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>
|