0

我有一个 ItemsControl,我在其中显示不同的属性和值,一侧是名称,另一侧是 TextBox。ItemsSource 是自定义类的对象集合,具有 Name、Value 和 PropertyType 属性(使用反射 propertyinfo)

现在我想通过检测属性是否为 bool 类型来改进这一点,例如,这将显示一个复选框而不是一个文本框。这可以使用 DataTrigger 吗?

我使用控件使其半工作,根据类型将模板设置为文本框或复选框,但是当我尝试“制表符”到下一个文本框或复选框时,它会聚焦具有文本框/复选框的控件首先,只有在另一个“选项卡”之后,它才会关注包含的文本框/复选框/..

因此,如果有人知道解决方案,将不胜感激!

4

2 回答 2

0

使用您已有的解决方案,并在错误获得选项卡焦点的控件上将Focusable属性设置为 false。

于 2013-07-08T15:04:25.307 回答
0

您可以使用 DataTemplate 根据 Value 属性类型选择不同的 View。

看法:

<ItemsControl ItemsSource="{Binding Path=Options}">
            <ItemsControl.ItemTemplate>
                <DataTemplate>
                    <DataTemplate.Resources>
                        <DataTemplate DataType="{x:Type System:Boolean}">
                            <CheckBox IsChecked="{Binding Path=.}"/>
                        </DataTemplate>
                        <DataTemplate DataType="{x:Type System:String}">
                            <TextBox Text="{Binding Path=.}"/>
                        </DataTemplate>
                    </DataTemplate.Resources>
                    <StackPanel Orientation="Horizontal">
                        <TextBlock Text="{Binding Path=Name, Mode=OneWay}"/>
                        <ContentControl Content="{Binding Path=Value}"/>
                    </StackPanel>
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>

视图模型:

public class MainViewModel
{
    public ArrayList Options { get; set; }

    public MainViewModel()
    {
        Options = new ArrayList();
        Options.Add(new TextProperty());
        Options.Add(new BoolProperty());
    }

}

public class TextProperty
{
    public string Name { get; set; }

    public string Value { get; set; }

    public TextProperty()
    {
        Name = "Name";
        Value = "Default";
    }
}

public class BoolProperty
{
    public string Name { get; set; }

    public bool Value { get; set; }

    public BoolProperty()
    {
        Name = "IsEnabled";
        Value = true;
    }
}
于 2013-07-08T14:38:08.980 回答