我正在尝试为ListBox项创建一个复杂的模板,但是某些绑定无效或“双向绑定需要Path或XPath”。发生了异常。
我在CustomerViewModel的ObservableCollection上有一个ListBox绑定。 ListBox中的每个项目必须显示CustomerViewModel对象的两个属性。第一个是“Name”(类型 - 字符串),第二个是“Value”(类型 - 对象)。真实类型的“值”可以是:bool,int,string,datetime,因此用于显示的控件模板必须是可选择的。
“价值”属性代码:
public object Value
{
get
{
switch (this.info.InputType)
{
case Enums.InputType.DateTime:
return Convert.ToDateTime(this.info.Value);
case Enums.InputType.Logical:
return Convert.ToBoolean(this.info.Value);
case Enums.InputType.Numeric:
return Convert.ToInt32(this.info.Value);
case Enums.InputType.Text:
return this.info.Value;
}
throw new ArgumentOutOfRangeException();
}
set
{
this.info.Value = value.ToString();
this.RaisePropertyChanged("Value");
}
}
XAML:
<ListBox ItemsSource="{Binding Customers}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<Label Content="{Binding Name}"/>
<ContentControl Content="{Binding Value}">
<ContentControl.Resources>
<DataTemplate DataType="{x:Type system:String}">
<TextBox Text="{Binding}"/>
</DataTemplate>
<DataTemplate DataType="{x:Type system:Boolean}">
<CheckBox IsChecked="{Binding}"/>
</DataTemplate>
<DataTemplate DataType="{x:Type system:Int32}">
<TextBox Text="{Binding}"/>
</DataTemplate>
<DataTemplate DataType="{x:Type system:DateTime}">
<DatePickerTextBox Text="{Binding}"/>
</DataTemplate>
</ContentControl.Resources>
</ContentControl>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
下面的XAML抛出“双向绑定需要Path或XPath”异常,因为
<ContentControl Content="{Binding Value}">
和
<TextBox Text="{Binding}"/>
如果我将最后一行更改为:
<TextBox Text="{Binding Path=.}"/>
..没有例外,但绑定仅适用于“OneWay”。 我认为,我需要以某种方式将TextBox绑定到相同的属性 - “Value”作为ContentControl,但在这种情况下我无法执行TwoWay绑定。
如果不编写ItemTemplateSelector,可以这样做吗?
答案 0 :(得分:0)
您是否尝试过设置模式的最后一行?
<TextBox Text="{Binding Path=., Mode=TwoWay}"/>
修改强>:
我注意到你正在使用这个。 fieldInfo 。在get和this中的值。信息。集合中的值,这只是一个错字吗?
你确定你无法击中你的套装中的断点吗?
修改强>:
嗯,我的想法已经用完了,也许你可以尝试设置更新源触发器?:
<TextBox Text="{Binding Path=., Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>