用户控件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
public class CircularProgressBar : UserControl
{
private Border _trackBorder;
private Path _progressPath;

/// <summary>
/// 进度
/// </summary>
public static readonly DependencyProperty ProgressProperty =
DependencyProperty.Register("Progress", typeof(double), typeof(CircularProgressBar),
new PropertyMetadata(0.0, OnProgressChanged));

/// <summary>
/// 中间的Brush
/// </summary>
public static readonly DependencyProperty BackgroundBrushProperty =
DependencyProperty.Register("BackgroundBrush", typeof(Brush), typeof(CircularProgressBar),
new PropertyMetadata(Brushes.Transparent));
/// <summary>
/// 轨道颜色
/// </summary>
public static readonly DependencyProperty TrackBrushProperty =
DependencyProperty.Register("TrackBrush", typeof(Brush), typeof(CircularProgressBar),
new PropertyMetadata(Brushes.LightGray));
/// <summary>
/// 进度条颜色
/// </summary>
public static readonly DependencyProperty ProgressBrushProperty =
DependencyProperty.Register("ProgressBrush", typeof(Brush), typeof(CircularProgressBar),
new PropertyMetadata(Brushes.Blue));

/// <summary>
/// 进度条宽度
/// </summary>
public static readonly DependencyProperty ProgressThicknessProperty =
DependencyProperty.Register("ProgressThickness", typeof(int), typeof(CircularProgressBar), new PropertyMetadata(13));

/// <summary>
/// 轨道宽度
/// </summary>
public static readonly DependencyProperty TrackThicknessProperty =
DependencyProperty.Register("TrackThickness", typeof(int), typeof(CircularProgressBar), new PropertyMetadata(5));


public double Progress
{
get => (double)GetValue(ProgressProperty);
set => SetValue(ProgressProperty, value);
}

public Brush BackgroundBrush
{
get => (Brush)GetValue(BackgroundBrushProperty);
set => SetValue(BackgroundBrushProperty, value);
}

public Brush TrackBrush
{
get => (Brush)GetValue(TrackBrushProperty);
set => SetValue(TrackBrushProperty, value);
}

public Brush ProgressBrush
{
get => (Brush)GetValue(ProgressBrushProperty);
set => SetValue(ProgressBrushProperty, value);
}

public int TrackThickness
{
get => (int)GetValue(TrackThicknessProperty);
set => SetValue(TrackThicknessProperty, value);
}

public int ProgressThickness
{
get => (int)GetValue(ProgressThicknessProperty);
set => SetValue(ProgressThicknessProperty, value);
}

public CircularProgressBar()
{
CreateVisualTree();
SizeChanged += OnSizeChanged;

}

private void CreateVisualTree()
{
var grid = new Grid();

// 轨道(背景+边框)
_trackBorder = new Border
{
BorderThickness = new Thickness(5),
CornerRadius = new CornerRadius(0)
};
_trackBorder.SetBinding(Border.BackgroundProperty, new Binding("BackgroundBrush") { Source = this });
_trackBorder.SetBinding(Border.BorderBrushProperty, new Binding("TrackBrush") { Source = this });
_trackBorder.SetBinding(Border.BorderThicknessProperty, new Binding("TrackThickness") { Source = this });

// 进度条(居中轨道)
_progressPath = new Path
{
StrokeThickness = 13,
StrokeStartLineCap = PenLineCap.Round,
StrokeEndLineCap = PenLineCap.Round
};
_progressPath.SetBinding(Shape.StrokeProperty, new Binding("ProgressBrush") { Source = this });
_progressPath.SetBinding(Shape.StrokeThicknessProperty, new Binding("ProgressThickness") { Source = this });

grid.Children.Add(_trackBorder);
grid.Children.Add(_progressPath);
Content = grid;
}

private void UpdateProgress()
{
if (ActualWidth <= 0 || ActualHeight <= 0) return;

// 计算可用空间(考虑边距)
double availableSize = Math.Min(ActualWidth - ProgressThickness, ActualHeight - ProgressThickness);
double trackRadius = availableSize / 2;

// 设置轨道大小和圆角
_trackBorder.Width = availableSize;
_trackBorder.Height = availableSize;
_trackBorder.CornerRadius = new CornerRadius(trackRadius);

// 确保进度条完全居中于轨道
double progressRadius = trackRadius - TrackThickness / 2;

// 绘制进度条
double angle = Math.Min(360 * Progress / 100, 359.99);
Point center = new Point(ActualWidth / 2, ActualHeight / 2);
Point startPoint = new Point(center.X, center.Y - progressRadius);

var geometry = new PathGeometry();
var figure = new PathFigure { StartPoint = startPoint, IsClosed = false };

var arc = new ArcSegment
{
Size = new Size(progressRadius, progressRadius),
SweepDirection = SweepDirection.Clockwise,
IsLargeArc = angle > 180,
Point = CalculatePoint(center, progressRadius, angle)
};

figure.Segments.Add(arc);
geometry.Figures.Add(figure);
_progressPath.Data = geometry;
}

private Point CalculatePoint(Point center, double radius, double angle)
{
double radians = angle * Math.PI / 180;
return new Point(
center.X + radius * Math.Sin(radians),
center.Y - radius * Math.Cos(radians));
}

private void OnSizeChanged(object sender, SizeChangedEventArgs e)
{
UpdateProgress();
}

private static void OnProgressChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
((CircularProgressBar)d).UpdateProgress();
}
}

使用

1
2
3
4
5
<CircularProgressBar  Width="224" Height="224" Progress="{Binding ScanProgress,Mode=OneWay}" BorderBrush="#B2FFFFFF" ProgressBrush="#1B75FF" ProgressThickness="17" TrackThickness="7">
<CircularProgressBar.BackgroundBrush>
<!--放置圆环中心的Imagebrush-->
</CircularProgressBar.BackgroundBrush>
</CircularProgressBar>
  • 使用Width和Height控制大小
  • Progress为当前的进度值 0-100
  • BorderBrush为轨道色值(未到达的进度色值) 使用TrackBrush控制也行
  • ProgressBrush为进度色值
  • TrackThickness为轨道宽度
  • ProgressThickness为进度宽度