设置长度属性时,Code Behind中的WPF DataTemplate崩溃

时间:2015-06-24 07:28:40

标签: c# wpf datatemplate

我有以下代码:

    protected override DataTemplate _CreateDataTemplate()
    {
        DataTemplate dataTemplate = new DataTemplate();
        FrameworkElementFactory factory = new FrameworkElementFactory(typeof(DockPanel));
        factory.SetBinding(Panel.BackgroundProperty, new Binding(CellContentBindingPath.Replace(".ValueUser", ".Background")));
        dataTemplate.VisualTree = factory;
        var childFactory = new FrameworkElementFactory(typeof(Image));
        childFactory.SetValue(FrameworkElement.WidthProperty, 15);
        factory.AppendChild(childFactory);

        childFactory = new FrameworkElementFactory(typeof(TextBlock));
        factory.AppendChild(new FrameworkElementFactory(""));
        childFactory.SetBinding(TextBlock.TextProperty, !ShowZero ? new Binding(CellContentBindingPath)
                                                                   {
                                                                       Converter = new ValueToNothingConverter()
                                                                   } : new Binding(CellContentBindingPath));
        childFactory.SetValue(FrameworkElement.HorizontalAlignmentProperty, ContentAlignment);

        factory.AppendChild(childFactory);
        return dataTemplate;
    }

错误是“15不是属性宽度的有效值”。

当我没有设置图像的宽度时,一切正常。不幸的是,宽度非常重要。

对于错误的代码格式化,很抱歉,我没有找到如何使其格式化。

1 个答案:

答案 0 :(得分:5)

FrameworkElement.Width属性的类型为double,但您尝试将其设置为整数值。

相反,请将其写成以下内容之一:

childFactory.SetValue(FrameworkElement.WidthProperty, 15.0);
childFactory.SetValue(FrameworkElement.WidthProperty, 15d);
childFactory.SetValue(FrameworkElement.WidthProperty, 15D);