在Silverlight应用程序中使用空格键选择Datagrid行

时间:2015-11-20 06:43:17

标签: c# xaml silverlight datagrid

我在Silverlight应用程序中有一个Datagrid。用户可以使用Tab键关注Datagrid,并使用向上和向下箭头键在各行之间移动。

请建议,当用户点击所选行的空格键时,如何触发行选择事件。

以下是代码段:

<Custom:ClientControl  
x:Class="TestNamespace.Modules.Views.SampleView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"  
mc:Ignorable="d"  
xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk" 
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity">
<sdk:DataGrid x:Name="dg" ...>
  <i:Interaction.Triggers>
    <i:EventTrigger EventName="MouseLeftButtonUp">
      <i:InvokeCommandAction Command="{Binding DoSomething}" />
    </i:EventTrigger>
  </i:Interaction.Triggers>
<sdk:DataGrid.Columns>
...

2 个答案:

答案 0 :(得分:1)

显然,这个解决方案非常简单。

步骤1:将KeyDown添加到Datagrid。

<sdk:DataGrid x:Name="dg" KeyDown="dg_KeyDown">

步骤2:在Datagrid KeyDown事件中的.XAML.CS文件中调用处理MouseLeftButtonUp事件的方法。

private void dg_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
    if (e.Key == System.Windows.Input.Key.Space)
    {
        this.viewModel.DoSomething();
    }
}

答案 1 :(得分:0)

试试这个:

<DataGrid>
    <DataGrid.InputBindings>
         <KeyBinding Key="Space" Command="{Binding DoSomething}"/>
    </DataGrid.InputBindings>
</DataGrid>

您可以将所选值绑定到View模型中的属性。