WPF设计器和绑定到依赖项属性问题

时间:2009-05-13 18:02:22

标签: wpf dependency-properties

在绑定到自定义依赖项属性时,我在更新WPF Designer时遇到问题。

在下面的示例中,我创建了一个简单的Ellipse,我想用自定义的MyAwesomeFill属性填充它。 MyAwesomeFill的默认值为黄色SolidColor画笔。

问题在于,在设计器的控制形式中,我看不到椭圆的默认填充(黄色),而是用SolidColor(#00000000)填充椭圆。但是,当我运行应用程序时,一切都完美无缺。

你有什么想法可能会发生这种情况吗?

感谢。

这是我使用的代码:

XAML:

<UserControl x:Class="TestApplication.MyEllipse"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Height="300" Width="300">
    <Grid>
        <Ellipse Stroke="Black" StrokeThickness="5" Fill="{Binding MyAwesomeFill}"></Ellipse>
    </Grid>
</UserControl>

C#:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace TestApplication
{
    public partial class MyEllipse : UserControl
    {
        #region Dependency property MyAwesomeFill
        //Define and register dependency property
        public static readonly DependencyProperty MyAwesomeFillProperty = DependencyProperty.Register(
            "MyAwesomeFill",
            typeof(Brush),
            typeof(MyEllipse),
            new PropertyMetadata(new SolidColorBrush(Colors.Yellow), new PropertyChangedCallback(OnMyAwesomeFillChanged))
        );

        //property wrapper
        public Brush MyAwesomeFill
        {
            get { return (Brush)GetValue(MyAwesomeFillProperty); }
            set { SetValue(MyAwesomeFillProperty, value); }
        }

        //callback
        private static void OnMyAwesomeFillChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e)
        {
            MyEllipse m = (MyEllipse)obj;
            m.OnMyAwesomeFillChanged(e);
        }
        #endregion

        //callback
        protected virtual void OnMyAwesomeFillChanged(DependencyPropertyChangedEventArgs e)
        {
        }

        public MyEllipse()
        {
            InitializeComponent();

            DataContext = this;
        }

    }
}

1 个答案:

答案 0 :(得分:3)

设计师无法保证代码落后。如果将MyEllipse控件添加到窗口,它将运行(窗口中的椭圆具有黄色背景),但是当您直接查看控件时则不会。这意味着它将对您控制的用户起作用,这是重要的。

要在设计器中打开MyEllipse时修复它看起来不错,请添加一个后备值。

<Ellipse 
    Stroke="Black" 
    StrokeThickness="5" 
    Fill="{Binding MyAwesomeFill, FallbackValue=Yellow}">
</Ellipse>