DissolveElement.xaml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <UserControl
  2. x:Class="SHJX.Service.Librarys.MainLibrarys.DissolveElement"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:hc="https://handyorg.github.io/handycontrol"
  7. xmlns:local="clr-namespace:SHJX.Service.Librarys.MainLibrarys"
  8. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  9. mc:Ignorable="d">
  10. <UserControl.Resources>
  11. <ResourceDictionary>
  12. <ResourceDictionary.MergedDictionaries>
  13. <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/SkinDefault.xaml" />
  14. <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/Theme.xaml" />
  15. </ResourceDictionary.MergedDictionaries>
  16. </ResourceDictionary>
  17. </UserControl.Resources>
  18. <Viewbox Stretch="Uniform">
  19. <Grid>
  20. <hc:WaveProgressBar
  21. x:Name="process_value"
  22. Width="90"
  23. Height="90"
  24. HorizontalAlignment="Stretch"
  25. VerticalAlignment="Stretch"
  26. Background="AliceBlue"
  27. FontSize="12"
  28. ShowText="False"
  29. WaveStroke="#FF6666"
  30. WaveThickness="4">
  31. <hc:WaveProgressBar.WaveFill>
  32. <LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
  33. <GradientStop Offset="0" Color="#FFCCCC" />
  34. <GradientStop Offset="1" Color=" #FF6666" />
  35. </LinearGradientBrush>
  36. </hc:WaveProgressBar.WaveFill>
  37. </hc:WaveProgressBar>
  38. <TextBlock
  39. x:Name="txt_dissolve_show"
  40. HorizontalAlignment="Center"
  41. VerticalAlignment="Center"
  42. FontFamily="幼圆"
  43. FontSize="40"
  44. FontWeight="Black"
  45. Foreground="#99CCCC"
  46. Opacity="0.7" />
  47. </Grid>
  48. </Viewbox>
  49. </UserControl>