如何从UWP中的另一个更改DependencyProperty值,FrameworkPropertyMetadata不可用

时间:2019-01-05 20:22:52

标签: c# uwp dependency-properties

我将在UWP项目中创建XAML自定义控件,并且我将实现与WPF应用程序中已经可用的相同模式,以便在主要DependencyProperty更改时立即编辑控件的属性。

在下面的示例代码中,我播种了当外部用户更改marshaling dp(名为“ Color”)时如何更改SolidColorBrush dp(称为“ ColorBrush”)。

在WPF中,这是我实施的模式(正常工作):

Color

尤其是,我将 public partial class ColorViewer : UserControl { // .ctor and other functions public Color Color { get { return (Color)GetValue(ColorProperty); } set { SetValue(ColorProperty, value); } } public static readonly DependencyProperty ColorProperty = DependencyProperty.Register("Color", typeof(Color), typeof(ColorViewer), new FrameworkPropertyMetadata(OnColorChanged)); public SolidColorBrush ColorBrush { get { return (SolidColorBrush)GetValue(ColorBrushProperty); } set { SetValue(ColorBrushProperty, value); } } public static readonly DependencyProperty ColorBrushProperty = DependencyProperty.Register("ColorBrush", typeof(SolidColorBrush), typeof(ColorViewer), null); private static void OnColorChanged(DependencyObject source, DependencyPropertyChangedEventArgs e) { var c = (Color) e.NewValue; ColorViewer view = source as ColorViewer; view.UpdateColorProperties(c); } private void UpdateColorProperties(Color c) { ColorBrush = new SolidColorBrush(c); // Many other things... } } (使用方法作为其参数)传递给设置“ Color” dp。

令我惊讶的是,我发现FrameWorkPropertyMetadata在UWP平台中不可用!

如何在UWP中获得相同的结果?

感谢您的关注。

最诚挚的问候

1 个答案:

答案 0 :(得分:1)

它没有那个,因为恕我直言,它比任何东西都更膨胀, Uwp有一个更简单的ProperyMetadata类,它允许您设置dp的默认值,如果想更深入一点,它还允许您设置在值更改时调用的CallBack。

.Register()函数中的最后一个参数是ProperyMetadata所在的位置。

在旁注中,像SolidColorBrush dp这样的笔刷类型会很好地自动分组在“属性”窗格的 Brush 组中,其他类型的dp通常会列在“ 普通