3

我正在开发 Windows Store App,并且我有这样的 XAML 代码:

<Popup x:Name="Panel3" IsOpen="False" Grid.ColumnSpan="18" Grid.Column="13" Grid.Row="4" Grid.RowSpan="31">
    <StackPanel>
        <Rectangle  Width="765" Height="10" />
        <ListView x:Name="Person" Grid.ColumnSpan="18" Grid.Column="13" HorizontalAlignment="Left" Height="643" Grid.Row="4" Grid.RowSpan="31" VerticalAlignment="Top" Width="765" >
            <ListView.Background>
                <SolidColorBrush Color="#FF665920" Opacity="0.85"/>
            </ListView.Background>
            <ListView.ItemTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding name}"/>
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView>
    </StackPanel>
</Popup>

我想禁用列表视图上的项目选择。所以它仅供查看,用户不能选择/单击列表视图中的任何内容。我怎样才能做到这一点?致以我的问候...

PS我添加 IsItemClickEnabled="False" 到列表视图行:

<ListView x:Name="Person" Grid.ColumnSpan="18" Grid.Column="13" HorizontalAlignment="Left" Height="643" Grid.Row="4" Grid.RowSpan="31" VerticalAlignment="Top" Width="765" IsItemClickEnabled="False">

但它并没有改变任何东西,仍然可以点击。

4

2 回答 2

11

您需要将SelectionMode属性设置None为禁用 a 的项目选择ListView

<ListView x:Name="Person" SelectionMode="None" ... />

IsItemClickEnabled="False"另外,根据您的需要,您可能仍然需要。

于 2013-07-07T19:37:18.043 回答
0

正如 nemesv 在他的回答中所说,我发现您需要修改 the 的视觉状态ListViewItem并设置SelectionMode="None"and (如果需要)。IsItemClickEnabled="False"

<ListView.ItemContainerStyle>
    <Style TargetType="ListViewItem">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate>
                    <Grid>
                        <VisualStateManager.VisualStateGroups>
                            <VisualStateGroup x:Name="CommonStates">
                                <!-- here we are clearing the state behavior, 
                                     thus disabling the clickability of the ListViewItem -->
                                <VisualState x:Name="Normal" />
                                <VisualState x:Name="PointerOver" />
                                <VisualState x:Name="Pressed" />
                             /VisualStateGroup>
                        </VisualStateManager.VisualStateGroups>
                        <Grid>
                            <ContentPresenter x:Name="ListViewItemContent" />
                        </Grid>
                   </Grid>
                </ControlTemplate>
            </Setter.Value>
       </Setter>
    </Style>
</ListView.ItemContainerStyle>
于 2017-11-22T01:50:48.453 回答