作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
考虑到这个 xaml :
<ListView ItemsSource="{Binding Items}" PreviewMouseLeftButtonDown="{Binding CheckItemCommand}">
<ListView.View>
<GridView>
<GridViewColumn>
<GridViewColumn.Header>
<CheckBox IsThreeState="True"
IsChecked="{Binding IsSelectAll, Mode=TwoWay}"
Command="{Binding CheckAllCommand}">
</CheckBox>
</GridViewColumn.Header>
<GridViewColumn.CellTemplate>
<DataTemplate DataType="x:MyObject">
<Grid>
<TextBlock Text="{Binding LoadingState}"/>
<CheckBox IsThreeState="False"
IsChecked="{Binding IsSelected, Mode=TwoWay}"
Command="{Binding CheckItemCommand}">
</CheckBox>
</Grid>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
<GridViewColumn Header="{Binding MyObject.Header_Name}"
DisplayMemberBinding="{Binding Name}" />
<GridViewColumn Header="{Binding MyObject.Header_CreationDate}"
DisplayMemberBinding="{Binding CreationDate}" />
<GridViewColumn Header="{Binding MyObject.Header_NumberOfStuff1}"
DisplayMemberBinding="{Binding stuff1}"/>
<GridViewColumn Header="{Binding MyObject.Header_NumberOfStuff2}"
DisplayMemberBinding="{Binding stuff2}"/>
</GridView>
</ListView.View>
</ListView>
PreviewMouseLeftButtonDown="{Binding CheckItemCommand}"
最佳答案
我发现了一些有用的东西。我不是很了解这个解决方案,但它工作得很好,它很容易理解并且可以用非常少的代码来完成(=> KISS 原则)。
为了获得正确的“OnRowClick => DoStuff()”行为,我拦截所有左键单击,如果源类型正确,我调用 Command_Execute() 方法。
代码 :
public MyContainer()
{
InitializeComponent();
this.PreviewMouseDown += MyContainer_PreviewMouseDown;
}
private void MyContainer_PreviewMouseDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
var source = e.OriginalSource as FrameworkElement;
var dataContext = source?.DataContext;
if(dataContext.GetType() == typeof(ProperViewModel))
{
((ProperViewModel)dataContext).Command_Execute();
}
}
关于C# WPF : binding a listview left button click to a data item command,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48438059/
我是一名优秀的程序员,十分优秀!