禁用鼠标悬停和选择CustomListbox中的选定项目

时间:2014-04-09 18:30:09

标签: c# wpf listbox wpf-style

我创建了一个自定义列表框,基于bool我想禁用少数项目的鼠标悬停和鼠标选择。我使用了Style类并在自定义列表框的代码中设置了样式。我的代码如下:

public class DragDropListBox : ListBox
{
    public DragDropListBox()
    {
         Style itemContainerStyle        = new Style(typeof(ListBoxItem));
        itemContainerStyle.Setters.Add(new EventSetter(ListBoxItem.DropEvent, new DragEventHandler(ListBoxItemDropHandler)));
        this.ItemContainerStyle         = itemContainerStyle;
    }        
}

现在我已经为drop事件设置了一个事件设置器并且工作正常。如何设置样式以禁用基于标志的项目的鼠标悬停和鼠标选择效果?我发现的大多数代码都是在XAML中。但是我需要自定义列表框的代码。任何帮助将不胜感激。

到目前为止,这种风格对我有用,但它在XAML中如何转换它的C#代码,特别是视觉状态和故事板......

<Style x:Key="ListBoxItemStyleTransparentSelect" TargetType="ListBoxItem">
        <Setter Property="Background" Value="Transparent"/>
        <EventSetter Event="Drop" Handler="listbox1_Drop"/>
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="ListBoxItem">
                    <Grid Background="{TemplateBinding Background}">
                        <VisualStateManager.VisualStateGroups>
                            <VisualStateGroup x:Name="CommonStates">
                                <VisualState x:Name="Normal"/>
                                <VisualState x:Name="MouseOver">
                                    <Storyboard>
                                        <DoubleAnimation Duration="0" To=".35" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="fillColor"/>
                                    </Storyboard>
                                </VisualState>
                                <VisualState x:Name="Disabled">
                                    <Storyboard>
                                        <DoubleAnimation Duration="0" To=".55" Storyboard.TargetProperty="Opacity" Storyboard.TargetName="contentPresenter"/>
                                    </Storyboard>
                                </VisualState>
                            </VisualStateGroup>
                            <VisualStateGroup x:Name="SelectionStates">
                                <VisualState x:Name="Unselected"/>
                                <VisualState x:Name="Selected"/>
                            </VisualStateGroup>
                            <VisualStateGroup x:Name="FocusStates">
                                <VisualState x:Name="Focused"/>
                                <VisualState x:Name="Unfocused"/>
                            </VisualStateGroup>
                        </VisualStateManager.VisualStateGroups>
                        <Rectangle x:Name="fillColor" IsHitTestVisible="True" Opacity="0" RadiusY="1" RadiusX="1"/>
                        <Rectangle x:Name="fillColor2" IsHitTestVisible="True" Opacity="0" RadiusY="1" RadiusX="1"/>
                        <ContentPresenter x:Name="contentPresenter" ContentTemplate="{TemplateBinding ContentTemplate}" Content="{TemplateBinding Content}" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}"/>
                        <Rectangle x:Name="FocusVisualElement" RadiusY="1" RadiusX="1" StrokeThickness="1" Visibility="Collapsed"/>
                    </Grid>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>

1 个答案:

答案 0 :(得分:0)

您需要修改或替换ControlTemplate的{​​{1}}并将其应用于ListBoxItem。对于标志本身,您需要一些bool属性来表达该值,以便可以在模板中使用它。我建议你可以在Style上设置一个继承的附加属性,然后访问孩子DragDropListBox

您绝对应该在XAML中使用此模板。在代码中编写ListBoxItems充其量是乏味的,并且阻止您使用现有模板作为起点。如果你想在代码中保存事件连接,你可以从资源中提取模板XAML,然后将其分配给代码中的setter。