MySqlCommand cmd = new MySqlCommand(query, conn);
dt.Load(cmd.ExecuteReader());
source.DataSource = dt;
dataGrid1.ItemsSource = source;
DateTime
データグリッドで、列の型をに変更したいのですがString
、どうすればよいですか?
ソースは
System.Windows.Forms.BindingSource source = new System.Windows.Forms.BindingSource();