ProgressBar前景色绑定
本文关键字:绑定 前景色 ProgressBar | 更新日期: 2023-09-27 18:24:51
是否有方法通过绑定更改ProgressBar
控件的颜色?我知道我可以覆盖CCD_ 2资源,但我需要在我的应用程序的不同页面上使用不同的颜色,这样是不可能的。
此外,使用Application.Current.Resources
检索资源是不可能的,我想通过设置画笔的Color
属性来创建行为。
您可以编写一个扩展并将其(以某种方式)附加到页面上。
public class ProgressBarExtension
{
public static readonly DependencyProperty ProgressBarBrushProperty =
DependencyProperty.RegisterAttached("ProgressBarBrush",
typeof(Brush), typeof(ProgressBarExtension),
new PropertyMetadata(null, OnProgressBarBrushChanged));
public static void SetProgressBarBrush(UIElement element, object value)
{
element.SetValue(ProgressBarBrushProperty, value);
}
public static object GetProgressBarBrush(UIElement element)
{
return element.GetValue(ProgressBarBrushProperty);
}
private static void OnProgressBarBrushChanged(DependencyObject obj, DependencyPropertyChangedEventArgs args)
{
App.Current.Resources["ProgressBarIndeterminateForegroundThemeBrush"] = args.NewValue as SolidColorBrush;
}
}
在第1页使用它将画笔设置为X:
<Page
x:Class="App1.Page1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
local:ProgressBarExtension.ProgressBarBrush="{StaticResource MyThemeColor1}">
并在第2页将画笔设置为Y:
<Page
x:Class="App1.Page2"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App1"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
local:ProgressBarExtension.ProgressBarBrush="{StaticResource MyThemeColor2}">
其中MyThemeColor1(X)和MyThemeColor 2(Y)是您预定义的SolidColorBrush资源。例如:
<Application.Resources>
<SolidColorBrush x:Key="MyThemeColor1" Color="#cccc92" />
<SolidColorBrush x:Key="MyThemeColor2" Color="#3423ff" />
</Application.Resources>