| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <UserControl
- x:Class="SHJX.Service.Librarys.MainLibrarys.DissolveElement"
- 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:hc="https://handyorg.github.io/handycontrol"
- xmlns:local="clr-namespace:SHJX.Service.Librarys.MainLibrarys"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d">
- <UserControl.Resources>
- <ResourceDictionary>
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/SkinDefault.xaml" />
- <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/Theme.xaml" />
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </UserControl.Resources>
- <Viewbox Stretch="Uniform">
- <Grid>
- <hc:WaveProgressBar
- x:Name="process_value"
- Width="90"
- Height="90"
- HorizontalAlignment="Stretch"
- VerticalAlignment="Stretch"
- Background="AliceBlue"
- FontSize="12"
- ShowText="False"
- WaveStroke="#FF6666"
- WaveThickness="4">
- <hc:WaveProgressBar.WaveFill>
- <LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
- <GradientStop Offset="0" Color="#FFCCCC" />
- <GradientStop Offset="1" Color=" #FF6666" />
- </LinearGradientBrush>
- </hc:WaveProgressBar.WaveFill>
- </hc:WaveProgressBar>
- <TextBlock
- x:Name="txt_dissolve_show"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontFamily="幼圆"
- FontSize="40"
- FontWeight="Black"
- Foreground="#99CCCC"
- Opacity="0.7" />
- </Grid>
- </Viewbox>
- </UserControl>
|