1

我的 ListBox 中的某些项目使用包含按钮和文本框的模板。我怎样才能使它不可能从列表中选择这些项目,但仍然可以与按钮交互?

编辑:

我仍然需要能够选择此列表中的其他项目,而不是使用此模板的项目。

4

2 回答 2

1

我们可以使用 ListBoxItem 的附加属性(在我实现之后,我发现有人做了几乎相同的事情):

public class ListBoxItemEx
{
    public static bool GetCanSelect(DependencyObject obj)
    {
        return (bool)obj.GetValue(CanSelectProperty);
    }
    public static void SetCanSelect(DependencyObject obj, bool value)
    {
        obj.SetValue(CanSelectProperty, value);
    }
    public static readonly DependencyProperty CanSelectProperty =
        DependencyProperty.RegisterAttached("CanSelect", typeof(bool), typeof(ListBoxItemEx), new UIPropertyMetadata(true, OnCanSelectChanged));

    private static void OnCanSelectChanged(DependencyObject sender, DependencyPropertyChangedEventArgs args)
    {
        var item = sender as ListBoxItem;
        if (item == null)
            return;

        if ((bool)args.NewValue)
        {
            item.Selected -= ListBoxItemSelected;
        }
        else
        {
            item.Selected += ListBoxItemSelected;
            item.IsSelected = false;
        }
    }

    private static void ListBoxItemSelected(object sender, RoutedEventArgs e)
    {
        var item = sender as ListBoxItem;
        if (item == null)
            return;
        item.IsSelected = false;
    }
}

xml:

<Window x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
    xmlns:local="clr-namespace:WpfApplication1"
    Title="MainWindow"
    Width="525"
    Height="350">
<Window.Resources>
    <Style x:Key="ListBoxItemStyle" TargetType="{x:Type ListBoxItem}">
        <Setter Property="local:ListBoxItemEx.CanSelect" Value="{Binding CanSelect}"/>
    </Style>
</Window.Resources>     
<Window.DataContext>
    <local:ViewModel />
</Window.DataContext>
<Grid Name="LayoutRoot">
    <ListBox ItemsSource="{Binding Elements}" ItemContainerStyle="{DynamicResource ListBoxItemStyle}" SelectionMode="Multiple" />
</Grid>

视图模型:

public class ViewModel : INotifyPropertyChanged
{
    #region INotifyPropertyChanged values

    public event PropertyChangedEventHandler PropertyChanged;

    protected void OnPropertyChanged(string propertyName)
    {
        if (this.PropertyChanged != null)
        {
            this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
        }
    }
    #endregion


    public List<Dummy> Elements { get; set; }

    public ViewModel()
    {
        this.Elements = new List<Dummy>(){
            new Dummy() { CanSelect =true, MyProperty = "Element1"},
            new Dummy() { CanSelect =false, MyProperty = "Element2"},
            new Dummy() { CanSelect =true, MyProperty = "Element3"},
            new Dummy() { CanSelect =false, MyProperty = "Element4"},
            new Dummy() { CanSelect =true, MyProperty = "Element5"},
            new Dummy() { CanSelect =true, MyProperty = "Element6"},
            new Dummy() { CanSelect =true, MyProperty = "Element7"},
            new Dummy() { CanSelect =true, MyProperty = "Element8"},
            new Dummy() { CanSelect =false, MyProperty = "Element9"},
        };
    }
}

public class Dummy
{
    public bool CanSelect { get; set; }

    public string MyProperty { get; set; }

    public override string ToString()
    {
        return this.MyProperty;
    }
}

这种方法的唯一警告是,如果 ListBox 具有单个选择,则尝试选择一个不可选择的项目会取消选择当前选定的项目,或者如果 ListBox 具有扩展选择,则取消选择所有项目。

于 2012-11-27T16:00:53.367 回答
1

使用ItemsControl而不是 ListBox

于 2012-11-26T15:25:04.767 回答