如何改变WinUI进度环的粗细?
How to change the thickness of WinUI progress ring?
我的 UWP C# 中有一个 WinUI 进度环 XAML 像这样的应用程序
xmlns:winui="using:Microsoft.UI.Xaml.Controls"
<winui:ProgressRing
Width="250"
Height="250"
Foreground="Green"
IsIndeterminate="False"
Maximum="60"
Value="59" />
看起来像这样
如何让它变厚?
正如@mm8所说,WinUI ProgressRing在后面的代码中是用AnimatedVisualPlayer
, and it will load play source实现的。
player.Source(winrt::make<AnimatedVisuals::ProgressRingIndeterminate>());
ProgressRingIndeterminate
Lottie animation has not provide method to edit thickness. if you do want to this feature, please post your requirement in GitHub,在下方分享link,我会帮忙投上一票
我的 UWP C# 中有一个 WinUI 进度环 XAML 像这样的应用程序
xmlns:winui="using:Microsoft.UI.Xaml.Controls"
<winui:ProgressRing
Width="250"
Height="250"
Foreground="Green"
IsIndeterminate="False"
Maximum="60"
Value="59" />
看起来像这样
如何让它变厚?
正如@mm8所说,WinUI ProgressRing在后面的代码中是用AnimatedVisualPlayer
, and it will load play source实现的。
player.Source(winrt::make<AnimatedVisuals::ProgressRingIndeterminate>());
ProgressRingIndeterminate
Lottie animation has not provide method to edit thickness. if you do want to this feature, please post your requirement in GitHub,在下方分享link,我会帮忙投上一票