Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在列表视图项目上显示一个图层(蒙版)。
基本上我想要做的是,我需要在设置某些属性时使控件不可选择,所以我将使上层可见以使项目不可选择。
任何人都可以建议我如何实现这一目标。让我知道是否需要任何进一步的细节。
感谢期待。
您可以将两个控件放在一起:
<Grid> <ListView IsEnabled="{Binding ...}" ...> <Rectange Opacity="0.5" Visibility="{Binding ...}" ...> </Grid>
您还应该禁用 ListView,否则用户将能够使用键盘访问它。