如果我有這種結構的類型:文本框或複選框取決於屬性
public class Parent
{
public string Name{get; set;}
public List<Child> Childs {get; set;}
}
public class Child
{
public string Name{get; set;}
public int Age {get; set;}
public bool Married {get; set;}
}
public class ParentFactory
{
public List<Parent> Parents {get; set;}
public ParentFactory()
{
Child child1 = new Child() {Name="Peter", Age=10, Married=true};
Child child2 = new Child() {Name="Mary", Age=9, Married=false};
Child child3 = new Child() {Name="Becky", Age=12, Married=true};
Parent parent1 = new Parent(){Name="Adam", Childs = new List<Child>(){child1, child2}};
Parent parent2 = new Parent(){Name="Kevin", Childs = new List<Child>(){child3}};
Parents = new List<Parent>(){parent1, parent2};
}
}
我想將對象ParentFactory parentFactory = new ParentFactory()
結合的ItemsControl:
<DockPanel>
<ItemsControl ItemsSource="{Binding Parents}">
</ItemsControl>
</DockPanel>
<Window.Resources>
<DataTemplate DataType="{x:Type Parent}">
<StackPanel Margin="2,2,2,1">
<Expander Header="{Binding Name}">
<ItemsControl ItemsSource="{Binding Childs}" />
</Expander>
</StackPanel>
</DataTemplate>
<DataTemplate DataType="{x:Type Child}">
<StackPanel>
<TextBox Grid.Column="0" Text="{Binding Name}" />
<TextBox Grid.Column="1" Text="{Binding Age}"/>
<CheckBox Grid.Column="2" IsChecked="{Binding Married}"/>
</StackPanel>
</DataTemplate>
</Window.Resources>
在StackPanel中,有兩種類型的控件:TextBox和CheckBox。但是,我希望它們更具動態性:如果值是布爾值,則使用複選框,否則使用文本框。這意味着我不需要在我的Child類中定義多個屬性來控制StackPanel中的TextBox或Checkbox。這是可能的,如果是的話,我該如何實現它們?
你的意思是,如果布爾= true,則複選框或文本框..?如果是這種情況,那麼你可以使用DataTemplate中的Triggers – Ankesh 2012-04-18 08:08:25
是的,一個屬性(已婚)是一個布爾值,然後使用複選框。否則使用文本框。 – olidev 2012-04-18 08:09:33
@ adcool2007你能否提供如何在Datatemplate中使用觸發器的示例代碼?謝謝 – olidev 2012-04-18 08:11:21