一种wpf绑定

时间:2015-09-14 07:53:21

标签: wpf

ı尝试将模型绑定到xml。我在wpf上是如此新鲜。但是ı不能使用这种语法。它给出了错误。它是“当地成员无法识别或无法访问”

<Grid local:GridHelpers.RowCount="{Binding RowCount}"
      local:GridHelpers.ColumnCount="{Binding ColumnCount}" />

怎么能转换这种语法。它是xaml

我试试这个。但这不行。

<Grid>
    <ContentPresenter
            Name="--"  
          Content="{Binding ElementName=RowCount, Path=?}">
    </ContentPresenter>
</Grid>

我的xmal类与此示例相同:https://rachel53461.wordpress.com/2011/09/17/wpf-grids-rowcolumn-count-properties/

2 个答案:

答案 0 :(得分:0)

您需要将GridHelper类添加到项目中并将该命名空间添加到xaml文件中,然后您可以引用它。

截至目前,它抱怨编译器无法理解什么是Local namespace。

答案 1 :(得分:0)

将xml名称空间声明添加到最顶层元素(例如Window或UserControl)

Python
Press any key to continue . . .

只需将WpfApplication1替换为GridHelper类的命名空间:

xmlns:local="clr-namespace:WpfApplication1"