wpf 自定义控件的自定义属性的数据绑定问题
问题是这样的:我自定义了一个控件contorl1里面有个属性publicstaticreadonlyDependencyPropertyColumnCountProper...
问题是这样的:
我自定义了一个控件 contorl1 里面有个属性
public static readonly DependencyProperty ColumnCountProperty= DependencyProperty.Register("ColumnCount", typeof(int), typeof(contorl1), new PropertyMetadata(1));
public int ColumnCount
{
get { return (int)this.GetValue(ColumnCountProperty); }
set { this.SetValue(ColumnCountProperty, value); }
}
然后呢,我在mainform里面
有一个属性 public int LeftColumnCount//此处定义个上面类似就不重复了。
最后
我要把contorl1.ColumnCount绑定到LeftColumnCount上。
换句话说就是两个都是自定义属性,之间的绑定
ColumnCount="{Binding Path=LeftColumnCount, Mode=TwoWay}
然后就报错了
不能在“contorl1”类型的“ColumnCount”属性上设置“Binding”。只能在 DependencyObject 的 DependencyProperty 上设置“Binding”。
在线等,速度哦,亲.... 展开
我自定义了一个控件 contorl1 里面有个属性
public static readonly DependencyProperty ColumnCountProperty= DependencyProperty.Register("ColumnCount", typeof(int), typeof(contorl1), new PropertyMetadata(1));
public int ColumnCount
{
get { return (int)this.GetValue(ColumnCountProperty); }
set { this.SetValue(ColumnCountProperty, value); }
}
然后呢,我在mainform里面
有一个属性 public int LeftColumnCount//此处定义个上面类似就不重复了。
最后
我要把contorl1.ColumnCount绑定到LeftColumnCount上。
换句话说就是两个都是自定义属性,之间的绑定
ColumnCount="{Binding Path=LeftColumnCount, Mode=TwoWay}
然后就报错了
不能在“contorl1”类型的“ColumnCount”属性上设置“Binding”。只能在 DependencyObject 的 DependencyProperty 上设置“Binding”。
在线等,速度哦,亲.... 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询