如何将某些WPF列表框设置为单选按钮?

时间:2013-06-28 15:51:44

标签: wpf vb.net listbox wpf-controls listboxitem

我想将我的一些列表框项目设置为radiobuttons。这是我的代码,但这种风格应用于每个listboxitem。

<Window.Resources>
    <Style TargetType="{x:Type ListBoxItem}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type ListBoxItem}">
                    <RadioButton Content="{TemplateBinding Content}"
                                 IsChecked="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=IsSelected}"/>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</Window.Resources>

我该怎么做才能让我可以指定一个列表框来设置单选按钮。我想这个名称会是这样的:

<ListBox Name="ListBox1" Width="120" Visibility="Visible" Background="{x:Null}" BorderThickness="0" Style="{StaticResource radioListBox}">

我知道问题的一部分是这只是样式列表框项,但我不知道如何设置列表框本身的样式。我当然更喜欢添加背景和边框属性。

任何帮助都将不胜感激。

1 个答案:

答案 0 :(得分:9)

您需要为Style提供一个密钥:

<Window.Resources>
    <Style x:Key="radioListBoxItem" TargetType="{x:Type ListBoxItem}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type ListBoxItem}">
                    <RadioButton Content="{TemplateBinding Content}"
                                 IsChecked="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=IsSelected}"/>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</Window.Resources>

然后你会将它应用到ListBox之类:

<ListBox ItemContainerStyle="{StaticResource radioListBoxItem}" />

如果您想为包含广播列表框项目和其他一些属性的ListBox创建样式,您也可以这样做:

<Style x:Key="radioListBox" TargetType="{x:Type ListBox}">
    <Setter Property="ItemContainerStyle" Setter="{StaticResource radioListBoxItem}" />
    <Setter Property="Background" Value="Navy" />
</Style>

你会申请它:

<ListBox Style="{StaticResource radioListBox}" />