DataGridは、行をひとつの塊として追加していく作りです(有償のものですと行列を簡単に入れ替えられるものがあるようです)
ですので、
| AAA | BBB | CCC | DDD |
---|
001 | 1 | 11 | 1.1 | 11.1 |
002 | 2 | 22 | 2.2 | 22.2 |
003 | 3 | 33 | 3.3 | 33.3 |
のような形でよければ簡単です(DataGrid_CSV1・NewMethod1 無駄に凝ってしまったので、あんまり簡単に見えませんが^^;
方向にこだわる場合は、List<List<string>>
にして列を追加していく感じがいいんじゃないでしょうか(DataGrid_CSV2・NewMethod2)
xml
1<Window
2 x:Class="Questions241581.MainWindow"
3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5 Width="800"
6 Height="450">
7 <Grid>
8 <Grid.RowDefinitions>
9 <RowDefinition />
10 <RowDefinition />
11 </Grid.RowDefinitions>
12 <DataGrid
13 x:Name="DataGrid_CSV1"
14 AutoGenerateColumns="False"
15 HeadersVisibility="All">
16 <!-- 行ヘッダーにしてみた -->
17 <DataGrid.RowHeaderStyle>
18 <Style TargetType="{x:Type DataGridRowHeader}">
19 <Setter Property="Content" Value="{Binding [0]}" />
20 </Style>
21 </DataGrid.RowHeaderStyle>
22 <DataGrid.Columns>
23 <!--<DataGridTextColumn Binding="{Binding [0]}" Header="Param" />-->
24 <DataGridTextColumn Binding="{Binding [1]}" />
25 <DataGridTextColumn Binding="{Binding [2]}" />
26 <DataGridTextColumn Binding="{Binding [3]}" />
27 <DataGridTextColumn Binding="{Binding [4]}" />
28 <!--<DataGridTextColumn Binding="{Binding [5]}" />-->
29 </DataGrid.Columns>
30 </DataGrid>
31
32 <DataGrid
33 x:Name="DataGrid_CSV2"
34 Grid.Row="1"
35 AutoGenerateColumns="False"
36 HeadersVisibility="All">
37 <!-- 行ヘッダーにしてみた -->
38 <DataGrid.RowHeaderStyle>
39 <Style TargetType="{x:Type DataGridRowHeader}">
40 <Setter Property="Content" Value="{Binding [0]}" />
41 </Style>
42 </DataGrid.RowHeaderStyle>
43 <DataGrid.Columns>
44 <!--<DataGridTextColumn Binding="{Binding [0]}" Header="Param" />-->
45 <DataGridTextColumn Binding="{Binding [1]}" Header="Val_001" />
46 <DataGridTextColumn Binding="{Binding [2]}" Header="Val_002" />
47 <DataGridTextColumn Binding="{Binding [3]}" Header="Val_003" />
48 <DataGridTextColumn Binding="{Binding [4]}" Header="Val_004" />
49 <DataGridTextColumn Binding="{Binding [5]}" Header="Val_005" />
50 </DataGrid.Columns>
51 </DataGrid>
52 </Grid>
53</Window>
cs
1using System;
2using System.Collections.Generic;
3using System.Data;
4using System.IO;
5using System.Linq;
6using System.Text;
7using System.Windows;
8
9namespace Questions241581
10{
11 public partial class MainWindow : Window
12 {
13 public MainWindow()
14 {
15 InitializeComponent();
16
17 NewMethod1();
18 NewMethod2();
19 }
20
21 private void NewMethod1()
22 {
23 List<string[]> all_data = new List<string[]>();
24
25 for(int i = 1; i <= 5; i++)
26 {
27 string path_read = @"Param_" + i.ToString("000") + ".csv";
28
29 List<string[]> list_file = new List<string[]>();
30
31 // 行ヘッダーになる部分("Val001")を先に追加しておく *1
32 list_file.Add(new string[] { "", @"Val" + i.ToString("000") });
33 FileRead(path_read, list_file);
34
35 // 最初のファイルの時は"AAA"部分を列ヘッダーに設定する
36 if(i == 1)
37 {
38 // list_fileから0番目の要素("AAA"等)を集めて配列にする
39 // *1で""が入ってしまっているのでいっこ飛ばす(Skip(1))
40 string[] names = list_file.Skip(1).Select(x => x[0]).ToArray();
41 for(int j = 0; j < names.Length; j++)
42 {
43 // 列ヘッダーはcsvを読むまで決まらないのでここで設定する
44 DataGrid_CSV1.Columns[j].Header = names[j];
45 }
46 }
47
48 // list_fileから1番目の要素("1"等)を集めて配列にする
49 // *1のおかげで先頭は"Val001"等になっている
50 string[] values = list_file.Select(x => x[1]).ToArray();
51 all_data.Add(values);
52 }
53
54 DataGrid_CSV1.ItemsSource = all_data;
55 }
56
57 private void NewMethod2()
58 {
59 // List<string>のList
60 // 列を追加していきたいので配列ではなくリストに
61 // 列数がわかっているので配列でもいいのだが、Listのほうがわかりやすそう
62 List<List<string>> all_data = new List<List<string>>();
63
64 for(int i = 1; i <= 5; i++)
65 {
66 string path_read = @"Param_" + i.ToString("000") + ".csv";
67
68 List<string[]> list_file = new List<string[]>();
69 FileRead(path_read, list_file);
70
71 // 最初のファイルの時は内側のList(1行分のデータ)を作成する
72 if(i == 1)
73 {
74 for(int j = 0; j < list_file.Count; j++)
75 {
76 // 内側のListを作成する
77 List<string> row_data = new List<string>();
78
79 // j行目の0番目 "AAA"等 を内側のListに追加する
80 row_data.Add(list_file[j][0]);
81
82 // 外側のListに内側のListを追加する
83 all_data.Add(row_data);
84 }
85 }
86
87 // 作成済みの内側のListに各数字を追加していく
88 for(int j = 0; j < list_file.Count; j++)
89 {
90 // j行目の1番目 "1"等 を内側のListに追加する
91 all_data[j].Add(list_file[j][1]);
92 }
93 }
94
95 DataGrid_CSV2.ItemsSource = all_data;
96 }
97
98 public void FileRead(string path_read, List<string[]> list_file)
99 {
100 try
101 {
102 using(var sr = new StreamReader(path_read, Encoding.GetEncoding("shift_jis")))
103 {
104 while(!sr.EndOfStream)
105 {
106 string line = sr.ReadLine();
107 string[] csv_array = line.Split(',');
108 list_file.Add(csv_array);
109 }
110 }
111 }
112 catch(Exception e) { }
113 }
114 }
115}
AAA,BBB,CCC,DDDは各ファイルに同じ順にあるとする。
各ファイルは同じ行数で、各行には一つ以上のカンマがあるとする。
追記
値の編集をする場合DataTable
を使ったほうがお手軽かもしれません。
xml
1<Window
2 x:Class="Questions241581.MainWindow"
3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5 Width="800"
6 Height="450">
7 <Grid>
8 <Grid.RowDefinitions>
9 <RowDefinition />
10 <RowDefinition Height="Auto" />
11 </Grid.RowDefinitions>
12 <DataGrid x:Name="DataGrid_CSV" />
13 <Button
14 Grid.Row="1"
15 Click="Button_Click"
16 Content="Save" />
17 </Grid>
18</Window>
cs
1using System;
2using System.Collections.Generic;
3using System.Data;
4using System.IO;
5using System.Linq;
6using System.Text;
7using System.Windows;
8
9namespace Questions241581
10{
11 public partial class MainWindow : Window
12 {
13 private DataTable table;
14
15 public MainWindow()
16 {
17 InitializeComponent();
18
19 table = new DataTable();
20 table.Columns.Add("Param");
21 table.Columns.Add("Val__001");
22 table.Columns.Add("Val__002");
23 table.Columns.Add("Val__003");
24 table.Columns.Add("Val__004");
25 table.Columns.Add("Val__005");
26
27 for(int i = 1; i <= 5; i++)
28 {
29 string path_read = @"Param_" + i.ToString("000") + ".csv";
30
31 List<string[]> list_file = new List<string[]>();
32 FileRead(path_read, list_file);
33
34 // 最初のファイルの時はDataRow(1行分のデータ)を作成する
35 if(i == 1)
36 {
37 for(int j = 0; j < list_file.Count; j++)
38 {
39 DataRow row = table.NewRow();
40
41 // j行目の0番目 "AAA"等 をDataRowに追加する
42 row[0] = list_file[j][0];
43 table.Rows.Add(row);
44 }
45 }
46
47 // 作成済みのDataRowに各数字を追加していく
48 for(int j = 0; j < list_file.Count; j++)
49 {
50 table.Rows[j][i] = list_file[j][1];
51 }
52 }
53
54 DataGrid_CSV.ItemsSource = table.DefaultView;
55 }
56 private void Button_Click(object sender, RoutedEventArgs e)
57 {
58 for(int i = 1; i <= 5; i++)
59 {
60 string path_write = @"new_Param_" + i.ToString("000") + ".csv";
61
62 // 名前と値のペアのリストを作る
63 var list_file = table.AsEnumerable()
64 .Select(x => new object[] { x[0], x[i] })
65 .ToList();
66
67 FileWrite(path_write, list_file);
68 }
69 }
70
71 public void FileRead(string path_read, List<string[]> list_file)
72 {
73 try
74 {
75 using(var sr = new StreamReader(path_read, Encoding.GetEncoding("shift_jis")))
76 {
77 while(!sr.EndOfStream)
78 {
79 string line = sr.ReadLine();
80 string[] csv_array = line.Split(',');
81 list_file.Add(csv_array);
82 }
83 }
84 }
85 catch(Exception e) { }
86 }
87
88 public void FileWrite(string path_write, List<object[]> list_file)
89 {
90 using(var sw = new StreamWriter(path_write, false, Encoding.GetEncoding("shift_jis")))
91 {
92 foreach(object[] csv_array in list_file)
93 {
94 sw.WriteLine(string.Join(",", csv_array));
95 }
96 }
97 }
98 }
99}