Windows 8.1 Pro (64bit)
Microsoft Visual Studio 2017 Community
概要
以下をもくろんでいる
- ICommand使用
- DataGridの行を選択
- ダブルクリック時に選択した行の情報を表示
参考
https://stackoverflow.com/questions/3876662/wpf-datagrid-commandbinding-to-a-double-click-instead-of-using-events
の
answered Nov 6 '13 at 9:32
Mizipzor
を参考にしました。
"/"を使う点がみそのようです。
is the / in your {Binding CollectionView/} on purpose? – Maslow Sep 23 '15 at 17:41
Yes, that makes it bind to the current item. Which when used with IsSynchronizedWithCurrentItem means the selected item. Here's a blog post. – Mizipzor Oct 1 '15 at 9:48
code
<Window x:Class="_170702_t1630_doubleClickBinding.MainWindow"
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"
xmlns:local="clr-namespace:_170702_t1630_doubleClickBinding"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Window.DataContext>
<local:ViewModel/>
</Window.DataContext>
<Grid>
<DataGrid x:Name="dataGrid1"
ItemsSource="{Binding myList}"
IsSynchronizedWithCurrentItem="True">
<DataGrid.InputBindings>
<MouseBinding MouseAction="LeftDoubleClick"
Command="{Binding DoubleClickCommand}"
CommandParameter="{Binding myList/}"/>
</DataGrid.InputBindings>
</DataGrid>
</Grid>
</Window>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace _170702_t1630_doubleClickBinding
{
/// <summary>
/// MainWindow.xaml の相互作用ロジック
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _170702_t1630_doubleClickBinding
{
class TestItem
{
public int Id { get; set; }
public string Name { get; set; }
public int Age { get; set; }
public string Gender { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//
using System.Collections.ObjectModel;
using System.Windows.Input;
using System.Windows;
using System.Data;
using System.Data.SqlClient;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace _170702_t1630_doubleClickBinding
{
class ViewModel : ViewModelBase
{
// コンストラクタ
public ViewModel()
{
DoubleClickCommand = CreateCommand(param => MyDoubleClickCommand(param));
//
myList = new ObservableCollection<TestItem>();
myList.Add( new TestItem { Id = 1, Name = "7of9", Age = 30, Gender = "Female"});
myList.Add( new TestItem { Id = 2, Name = "Janeway", Age = 50, Gender = "Female" });
myList.Add( new TestItem { Id = 3, Name = "Chakotay", Age = 40, Gender = "Female" });
}
public ObservableCollection<TestItem> myList { get; set; }
public ICommand DoubleClickCommand { get; private set; }
public void MyDoubleClickCommand(object param)
{
if (param == null)
{
return;
}
var clc = (TestItem)param;
MessageBox.Show("Double click on " + clc.Name);
}
}
}
ViewModelBase.csは@hugo-sbさんのコードを使わせていただいています。
ありがとうございます。
実行
本当は違うんだ日記
下記の点でコレジャナイ。
- 項目が記載されている左側をダブルクリックしたい
- でもそうすると、編集画面になる
- Readonlyにすればいいだろうか
- 行を選択せずに、いきなりダブルクリックしたい
- 行選択しないと7of9になる
IsReadOnly="True"
DataGridのIsReadOnlyをTrueにしてみた。
行を選択せずに、項目が記載されている列をダブルクリックしたら、その行の項目が表示される。
項目が記載されていない右側の列のダブルクリックでは7of9になる。