| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <UserControl
- x:Class="SHJX.Service.Library.Views.RingProcessBar"
- 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"
- mc:Ignorable="d">
- <UserControl.Resources>
- <Style x:Key="BtnInfoStyle" TargetType="Button">
- <Setter Property="Width" Value="70" />
- <Setter Property="Height" Value="25" />
- <Setter Property="Foreground" Value="White" />
- <Setter Property="BorderThickness" Value="0" />
- <Setter Property="Background" Value="#929FDE" />
- <Setter Property="Template">
- <Setter.Value>
- <ControlTemplate TargetType="Button">
- <Border
- x:Name="border"
- Background="{TemplateBinding Background}"
- BorderBrush="{TemplateBinding BorderBrush}"
- BorderThickness="{TemplateBinding BorderThickness}"
- CornerRadius="45"
- SnapsToDevicePixels="True">
- <TextBlock
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="24"
- Foreground="{TemplateBinding Foreground}"
- Text="{TemplateBinding Content}" />
- </Border>
- </ControlTemplate>
- </Setter.Value>
- </Setter>
- </Style>
- </UserControl.Resources>
- <Viewbox>
- <Grid Width="100" Height="100">
- <Path
- Name="myCycleProcessBar2"
- Width="100"
- Height="100"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Data="M17,3 A14,15 3 0 1 16,5 "
- Opacity="0.5"
- Stroke="#929FDE"
- StrokeDashOffset="0.3"
- StrokeEndLineCap="Round"
- StrokeStartLineCap="Round"
- StrokeThickness="3">
- <Path.Effect>
- <DropShadowEffect
- BlurRadius="8"
- Opacity="0.5"
- ShadowDepth="1"
- Color="#929FDE" />
- </Path.Effect>
- </Path>
- <Path
- Name="myCycleProcessBar1"
- Width="82"
- Height="82"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Data="M17,3 A14,15 3 0 1 16,5 "
- Stroke="#FF8BB9"
- StrokeDashArray="0.5 0.3"
- StrokeEndLineCap="Round"
- StrokeStartLineCap="Round"
- StrokeThickness="6" />
- <Button
- x:Name="RingName"
- Width="60"
- Height="60"
- Margin="0"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- BorderBrush="Transparent"
- BorderThickness="0"
- Style="{StaticResource BtnInfoStyle}" />
- </Grid>
- </Viewbox>
- </UserControl>
|