いくつかのデータを表示するために次のコードを記述しましたが、データグリッドが空になっているように見えます。これが私のコードです。
DataTable dt = new DataTable();
DataColumn col = new DataColumn("A", typeof(string));
col.MaxLength = 100;
dt.Columns.Add(col);
col = new DataColumn("B", typeof(string));
col.MaxLength = 100;
dt.Columns.Add(col);
DataRow row = dt.NewRow();
dt.Rows.Add(x,y);
dataGrid1.ItemsSource = dt.DefaultView;