如果我正確理解你,你可以設置你的ListBox的DataContext爲一個類的實例(在我的例子中,我在代碼中做:list.DataContext = myclass;),並且你想設置您的列表框的ItemSource添加到類中的列表(即Items)和組合框的itemssource到類中的另一個列表(即Values)中。這裏是我的XAML,似乎工作:
<ListBox Name="list" ItemsSource="{Binding Items}">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding}"/>
<ComboBox ItemsSource=
"{Binding RelativeSource={RelativeSource FindAncestor,
AncestorType={x:Type ListBox}},
Path=DataContext.Values}"
/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
和繼承人是我綁定到類:
public class AClass
{
protected List<string> _Items;
public List<string> Items
{
get
{
if (_Items == null)
{
_Items = new List<string>();
}
return _Items;
}
}
protected List<string> _Values;
public List<string> Values
{
get
{
if (_Values == null)
{
_Values = new List<string>();
}
return _Values;
}
}
}
在代碼中,我創建ACLASS的實例,添加項目和值,並設置實例添加到列表框的DataContext中。
需要查看所有的XAML來幫助您處理這個問題。 – Charlie 2009-07-27 19:19:15