假设我有一个类似于这样的自定义数据类型:
public class MyDataType
{
public string SimpleProp1;
public string SimpleProp2;
public List<SomeType> ComplexProp;
}
现在我有一个动态创建的数据绑定控件(即ItemsControl或DataGrid)。 如何在xaml代码中定义的绑定看起来像访问复杂属性的子属性?我认为应该看起来像这样:
<TextBox Text="{Binding simpleSubProp, path=ComplexProp[0]}" />
或
<TextBox Text="{Binding path=ComplexProp[0].simpleSubProp}" />
但这两个都给我xml解析错误。它应该如何看起来正确?是否有可能以某种方式引用集合属性的特定项目?如果不是,我还有其他选择吗?
编辑,这个场景似乎不够明确:
我有一个
IEnumberable<MyDataType>
绑定到ItemsControl,在DataTemplate内部我有多个TextBox,需要引用复杂属性List中对象的子属性。
答案 0 :(得分:7)
看起来像Silverlight Indexers in property paths are broken中的poperty路径索引器已被破坏。绕过它的方法是在帖子中建议并使用IValueConverter。
XAML
<UserControl x:Class="Silverlight.Mine.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="System"
xmlns:sm="clr-namespace:Silverlight.Mine;assembly=Silverlight.Mine"
Width="400" Height="300">
<UserControl.Resources>
<sm:SomeTypeConverter x:Key="MySomeTypeConverter" />
</UserControl.Resources>
<Grid x:Name="LayoutRoot" Background="White">
<TextBlock x:Name="myTextBlock" Text="{Binding Path=SomeDates, Converter={StaticResource MySomeTypeConverter}}" />
</Grid>
</UserControl>
C#Page.xaml.cs
namespace Silverlight.Mine
{
public partial class Page : UserControl
{
private SomeType m_mySomeType = new SomeType();
public Page()
{
InitializeComponent();
myTextBlock.DataContext = m_mySomeType;
}
}
}
C#SomeType.cs
namespace Silverlight.Mine
{
public class SomeType
{
public List<DateTime> SomeDates { get; set; }
public SomeType()
{
SomeDates = new List<DateTime>();
SomeDates.Add(DateTime.Now.AddDays(-1));
SomeDates.Add(DateTime.Now);
SomeDates.Add(DateTime.Now.AddDays(1));
}
}
public class SomeTypeConverter : IValueConverter
{
public object Convert(object value,
Type targetType,
object parameter,
CultureInfo culture)
{
if (value != null)
{
List<DateTime> myList = (List<DateTime>)value;
return myList[0].ToString("dd MMM yyyy");
}
else
{
return String.Empty;
}
}
public object ConvertBack(object value,
Type targetType,
object parameter,
CultureInfo culture)
{
if (value != null)
{
return (List<DateTime>)value;
}
return null;
}
}
}
答案 1 :(得分:4)
我一直这样做,有两种方法可以解决这个问题,具体取决于你想要的东西。
如果您真的只想要列表中的一个特定成员,则可以使用转换器。 XAML看起来像这样:
<TextBox Text="{Binding MyDataTypeInstance, Converter={StatacResources SpecificInstanceConverter}}" />
这通常不是我需要的,通常我需要一个控件来显示整个comlex对象,如果是这样的话,那么更像是如下:
<StackPanel>
<Textblock Text="{Binding SimpleProp1}"/>
<TextBlock Text="{Bidning SimpleProp2}"/>
<ItemsControl ItemsSource="{Binding ComplexProp}>
<ItemsControl.ItemsTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding ComplexPropertyName}/>
<InputToolkit:NumericUpDown Value="{Binding ComplexPropertyValue}/>
</StackPanel>
</DataTemplate>
</ItemsControl.ItemsTemplate>
</ItemsControl>
</StackPanel>
我喜欢这种方法,因为我的GUI匹配我的业务对象,因此它通常比我在代码隐藏中检查特定索引时更清晰。
答案 2 :(得分:2)
尝试{Binding ComplexProp(0).simpleSubProp}。如果这不起作用,您也可以编写一个简单的转换器来执行此操作。
答案 3 :(得分:2)
现在可以在Silverlight 4中正常工作。
有一点需要注意,该课程有三个公共领域。将它们更改为Properties(并且也是实现INotifyPropertyChanged的想法),然后以下代码可以正常工作。
<StackPanel>
<TextBlock Text="{Binding Path=SimpleProp1}" />
<TextBox Text="{Binding Path=ComplexProp[0].SimpleSubProp, Mode=TwoWay}" Width="200" Height="60"/>
</StackPanel>
案例也很重要,因为绑定区分大小写。
答案 4 :(得分:1)
我不确定你能做到这一点。通常,您会将列表绑定到类似列表框(或其他“重复”控件)的内容,然后内部的每个项目都能够绑定到列表中的相关元素。
答案 5 :(得分:1)
根据Path Syntax on MSDN,您可以这样做:
<TextBox Text="{Binding ComplexProp[0].simpleSubProp}" />
可能是小写的“path =”给你错误?试试“Path =”。此外,不确定这是否适用于Silverlight ......
答案 6 :(得分:1)
为了概括这一点,我建议您使用其他人提到的值转换器,并使用ConverterParam选项传递索引。