如何在 C# WPF(运行时)中将 Dependency Property propertymetadata 设置为 LinearGradientBrush?

Posted

技术标签:

【中文标题】如何在 C# WPF(运行时)中将 Dependency Property propertymetadata 设置为 LinearGradientBrush?【英文标题】:How to set Depenency Property propertymetadata to LinearGradientBrush in C# WPF (in runtime)? 【发布时间】:2021-09-12 15:39:02 【问题描述】:

我有一个名为 TemplateButton 的自定义 UserControl。我尝试了很多方法将PropertyMetadata 设置为LinearGradientBrush,但似乎没有任何帮助。那么有什么解决办法吗?

public LinearGradientBrush myProperty
        
            get  return (LinearGradientBrush)GetValue(myPropertyProperty); 
            set  SetValue(myPropertyProperty, value); 
        

        // Using a DependencyProperty as the backing store for myProperty.  This enables animation, styling, binding, etc...
        public static readonly DependencyProperty myPropertyProperty =
            DependencyProperty.Register("myProperty", typeof(LinearGradientBrush), typeof(TemplateButton), new PropertyMetadata(0));

或者只是

new PropertyMetadata(0));

我需要用什么来代替0

【问题讨论】:

考虑使用更通用的 Brush 类型而不是 LinearGradientBrush。 【参考方案1】:

任何mutable reference type 依赖属性的默认值都应该是null

否则,所属类的多个实例可能会对同一个默认值对象进行操作,这可能会导致意外行为。

public static readonly DependencyProperty myPropertyProperty =
    DependencyProperty.Register(
        nameof(myProperty),
        typeof(LinearGradientBrush),
        typeof(TemplateButton),
        new PropertyMetadata(null));

理想情况下,除非您确实需要,否则根本不要设置任何 PropertyMetadata:

public static readonly DependencyProperty myPropertyProperty =
    DependencyProperty.Register(
        nameof(myProperty),
        typeof(LinearGradientBrush),
        typeof(TemplateButton));

【讨论】:

感谢您的快速回复,我还是不明白 lol P.S.糟糕的英语编辑:哦,我的糟糕,现在我明白了当我尝试 89213901h 时间时

以上是关于如何在 C# WPF(运行时)中将 Dependency Property propertymetadata 设置为 LinearGradientBrush?的主要内容,如果未能解决你的问题,请参考以下文章

在 C# 中将 WPF 属性绑定到 ApplicationSettings 的最佳方法?

C# Wpf 在运行时嵌入图像

在运行时动态创建多个 UI 元素 - C# WPF

在 C# WPF 中将 ImageSource 转换为字符串

WPF C# 在运行时将文本和图像添加到 ComboBox

如何在 WPF 中将 MessageBox 窗口保留在前台