0

我创建了一个自定义列表框,并基于一个布尔值,我想为几个项目禁用鼠标悬停和鼠标选择。我使用了 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>
4

1 回答 1

0

您需要修改或替换ControlTemplateforListBoxItem并将其应用到您的Style. 对于标志本身,您将需要一些 bool 属性来表达值,以便可以在模板中使用它。我会推荐一个继承的附加属性,您可以DragDropListBox在 child 上设置然后访问它ListBoxItems

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

于 2014-04-09T19:16:29.567 回答