2

我创建了一个简单的 Rating 用户控件,当我使用绑定时,这个控件在 WinRT 中不起作用的问题,它在 windows phone 上运行良好,这是我的控件:

public sealed partial class RatingControl : UserControl
{
    public int Rate { get { return (int)GetValue(RateProperty); } set { SetValue(RateProperty, value); } }
    public static readonly DependencyProperty RateProperty = DependencyProperty.Register("Rate",
                                                                    typeof(int),
                                                                    typeof(RatingControl), null);
    public RatingControl()
    {
        this.InitializeComponent();
        this.Loaded += RatingControl_Loaded;
    }

    void RatingControl_Loaded(object sender, RoutedEventArgs e)
    {
        List<Image> Images = new List<Image>();
        for (int i = 0; i < 5; i++)
        {
            Image img = new Image { Width = 35, Height = 35, Margin = new Thickness(3) };
            img.Source = new BitmapImage { UriSource = new System.Uri("ms-appx:Images/Stars/notFilled.png") };
            Images.Add(img);
            sp.Children.Add(img);
        }
        for (int i = 0; i < Rate; i++)
            Images[i].Source = new BitmapImage { UriSource = new System.Uri("ms-appx:Images/Stars/Filled.png") };
    }
}

当我对值进行硬编码时,它可以正常工作:

<local:RatingControl Rate="3" />

但是当我使用绑定时,它只显示零星。我检查了 Rate 的值,它总是为零。

<local:RatingControl Rate="{Binding Decor, Mode=TwoWay}" />

更新:我刚刚发现绑定发生在我得到 Rate 的值之前,所以它一直为零。我该如何解决?我需要在获得值后进行绑定。我还认为每次更改 Rate 值时都会发生绑定。

解决方案:我没有正确实现 DependencyObject,我应该这样做:

public static readonly DependencyProperty RateProperty = DependencyProperty.Register("Rate",
                                                                    typeof(int),
                                                                    typeof(RatingControl), new PropertyMetadata(0, new PropertyChangedCallback(BindRateControl)));
4

2 回答 2

2

解决方案:我没有正确实现 DependencyObject,我应该这样做(添加回调方法):

public static readonly DependencyProperty RateProperty = DependencyProperty.Register("Rate",
                                                                typeof(int),
                                                                typeof(RatingControl), 
                                                                new PropertyMetadata(0, new PropertyChangedCallback(BindRateControl)));
于 2012-05-12T06:11:19.100 回答
0

您是否尝试从代码隐藏中添加 UserControl。这可以帮助您确保在获取值后触发 UserControl。

于 2012-05-11T16:39:51.750 回答