74 lines
4.0 KiB
XML
74 lines
4.0 KiB
XML
<UserControl
|
|
d:DesignHeight="600"
|
|
d:DesignWidth="930"
|
|
mc:Ignorable="d"
|
|
x:Class="AntDesignWPFDemo.Views.ProgressView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:antd="https://github.com/ShrlAlgo/AntDesignWPF"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<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
|
|
Margin="0,0,0,10"
|
|
Maximum="100"
|
|
Minimum="0"
|
|
x:Name="Slider" />
|
|
<ProgressBar Margin="0,0,0,10" Value="{Binding ElementName=Slider, Path=Value}" />
|
|
<!--<ProgressBar Margin="0,0,0,10" Value="{Binding ElementName=Slider, Path=Value}" />-->
|
|
<!--<ProgressBar IsIndeterminate="True" Margin="0,0,0,10" Value="{Binding ElementName=Slider, Path=Value}" />-->
|
|
<ProgressBar IsIndeterminate="True" Margin="0,0,0,10" />
|
|
<UniformGrid>
|
|
<ProgressBar
|
|
Style="{StaticResource Ant.CircularProgressBar}"
|
|
Width="100"
|
|
Value="{Binding ElementName=Slider, Path=Value}" />
|
|
<ProgressBar
|
|
Width="100"
|
|
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> |