代码之家  ›  专栏  ›  技术社区  ›  Ghassan Karwchan

使WPF中的列表框项不可选

  •  52
  • Ghassan Karwchan  · 技术社区  · 15 年前

    我在WPF中有一个列表框,当他们选择一个项目时,它会显示难看的颜色。 我可以让所有项目都不可选吗?

    11 回复  |  直到 9 年前
        1
  •  88
  •   Thomas Levesque    15 年前

    如果不需要选择,请使用 ItemsControl 而不是 ListBox

        2
  •  24
  •   Vadym Kyrylkov    10 年前

    在ListBoxItem样式中将Focusable属性添加为false:

    <Style x:Key="{x:Type ListBoxItem}" TargetType="{x:Type ListBoxItem}">
      <!-- Possibly other setters -->
      <Setter Property="Focusable" Value="False" />
    </Style>
    
        3
  •  12
  •   4imble    10 年前

    如果您不想让它们可选,那么您可能不想使用ListView。 但如果这是你真正需要的,那么你可以用一种风格来做:

    <Page
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
      <Page.Resources>
    
    
    <Style x:Key="{x:Type ListBoxItem}" TargetType="{x:Type ListBoxItem}">
      <Setter Property="Template">
        <Setter.Value>
          <ControlTemplate TargetType="{x:Type ListBoxItem}">
            <Border 
              Name="Border"
              Padding="2"
              SnapsToDevicePixels="true">
              <ContentPresenter />
            </Border>
            <ControlTemplate.Triggers>
              <Trigger Property="IsSelected" Value="true">
                <Setter TargetName="Border" Property="Background" Value="#DDDDDD"/>
              </Trigger>
              <Trigger Property="IsEnabled" Value="false">
                <Setter Property="Foreground" Value="#888888"/>
              </Trigger>
            </ControlTemplate.Triggers>
          </ControlTemplate>
        </Setter.Value>
      </Setter>
    </Style>
    
      </Page.Resources>
      <Grid>  
        <ListBox>
          <ListBoxItem>One</ListBoxItem>
          <ListBoxItem>Two</ListBoxItem>
          <ListBoxItem>Three</ListBoxItem>
        </ListBox>
      </Grid>
    </Page>
    

    看一看IsSelected触发器。您可以将边框设置为不同的颜色,使其不“难看”,或将其设置为透明,选中时将不可见。

    希望这有帮助。

        4
  •  12
  •   Asad Durrani    9 年前

    请在您的列表框中使用这个。我发现这个非常优雅的解决方案

    <ListBox ItemsSource="{Binding YourCollection}">
        <ListBox.ItemContainerStyle>
           <Style TargetType="{x:Type ListBoxItem}">
               <Setter Property="Focusable" Value="False"/>
            </Style>
        </ListBox.ItemContainerStyle>
    </ListBox>
    
        5
  •  4
  •   biegleux piyush    12 年前

    还有一个更简单的方法:设置 ListBox 财产 IsHitTestVisible="False" . 这将阻止列表中的所有项目接收鼠标事件。这样做的好处是在鼠标悬停时也可以停止突出显示。

    它在wp 7.1中对我有效。

        6
  •  3
  •   tornacious    13 年前

    一个简单的方法(使用上面viky的答案)是在selectionChanged()中将所选索引设置为-1,如下所示。

    public void OnListView_SelectionChanged(Object sender, RoutedEventArgs e)
    {
        if (null != sender && sender is ListView)
        {
            ListView lv = sender as ListView;
            lv.SelectedIndex = -1;
        }
    }
    
        7
  •  2
  •   user1630939    11 年前

    最好避免事件发生,它更优雅,没有副作用的风格标签。

    <ListBox>
      <ListBox.ItemContainerStyle>
        <Style TargetType="ListBoxItem">
          <Setter Property="IsEnabled" Value="False"/>
        </Style>
      </ListBox.ItemContainerStyle>
      <ListBox.ItemTemplate>
        <DataTemplate>
          <StackPanel>
            ... what you want as a source ...
           </StackPanel>
        </DataTemplate>
      </ListBox.ItemTemplate>
    </ListBox>
    
        8
  •  1
  •   viky    15 年前

    可以处理列表框的SelectionChanged事件,并在事件处理程序中取消选择所选项。

        9
  •  1
  •   Tim Valentine    14 年前
        10
  •  0
  •   Adrian Bystrek    10 年前

    您还可以将禁用的列表框设置为静态的、非交互的列表框。

    <ListBox IsEnabled="False"/>
    

    我认为这是一个尽可能简单的解决方案。

        11
  •  0
  •   dba    9 年前

    在我的例子中,我用一个文本块和一个组合框模板化了ListBoxItem。唯一的“活动”应该是组合…

    <ScrollViewer VerticalScrollBarVisibility="Auto"
                  HorizontalScrollBarVisibility="Disabled"
                  CanContentScroll="True" />
        <ItemsControl>
         ....here my content....
        </Itemscontrol>
    </ScrollViewer>
    

    按预期为我工作。 Br 丹尼尔