最近DataGridViewを扱う場合の流れ。
・内容の表示はモデルクラスのインスタンスをリスト化してバインドする。
入力内容をパースしたりする場合は、インスタンスのプロパティで処理。表示のスタイルについてはDataGridViewのセルで処理。
内部で保持するデータ型はstring型が多い。手入力される値はパースで弾いたときに空白に戻したいと思うことが多い。少し前はバインドせずパースの処理を間に入れていた。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace ProductionManagement { public partial class ScheduleListForm : Form { public ScheduleListForm() { InitializeComponent(); SetTextBoxBind(); } private void SetTextBoxBind() { StartYmd.DataBindings.Add("Text", new TextBoxBind(), "年月日"); EndYmd.DataBindings.Add("Text", new TextBoxBind(), "年月日"); } } class TextBoxBind { private string ymd; public object 年月日 { set { try { var dt = DateTime.Parse(Convert.ToString(value)); ymd = dt.ToString("yyyy/MM/dd"); } catch { ymd = ""; } } get { return ymd; } } } } |
ここでは試しにテキストボックスのバインド処理だけ。
・カラムとDBスキーマはリフレクションで連動させ、一箇所で指定。DBのテーブル作成もコード化しておく。
(ここでは記載していない)
・検索ボックスがある場合のクエリもリフクションで作る。
(ここでは記載していない)
・値が変更された行は色を変える。
・更新のときはスクロール位置を戻す。新規のときは一番下へスクロール。
・行を追加するときは1行のみの表示に切り替える。
更新処理はフラグ用のカラムを見て判断。
・マスタ化しているカラムは、クリック時にフォームを表示させる。
(ここでは記載していない)
・カラムの表示/非表示、サイズ、並び順は上記と同じようにテキストファイルで指定できるようにする。(ここでは記載していない)
ユーザー側で変更したいであろう部分はテキストファイルで処理できるように。
本来はもっとクラスに分散させているけど、今回は見やすいように1つのファイルに入れた。一部は流用しているので載っていない。
ここまで手動でやらなくても色々方法はあるのだろうけど、何だかんだ手作りで落ち着いた。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace ProductionManagement { public partial class ScheduleForm : Form { string _SalesID; string _SalesStaff; public ScheduleForm(string i, string n) { InitializeComponent(); _SalesID = i; _SalesStaff = n; EventAttach(); DataLoad(); SetViewStyle(); } private void SetViewStyle() { DataGridView.Columns["ID"].Visible = false; DataGridView.Columns["Modified"].Visible = false; DataGridView.Columns["外注一覧ID"].Visible = false; DataGridView.Columns["担当者名"].Visible = false; DataGridView.Columns["名称"].Width = 190; DataGridView.Columns["開始日"].Width = 120; DataGridView.Columns["終了日"].Width = 120; DataGridView.RowHeadersWidth = 50; DataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect; DataGridView.ColumnHeadersDefaultCellStyle.WrapMode = DataGridViewTriState.False; DataGridView.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing; DataGridView.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.None; DataGridView.AutoSizeRowsMode = DataGridViewAutoSizeRowsMode.None; DataGridView.Font = new Font("メイリオ", 10); DataGridView.RowTemplate.Height = 22; DataGridView.AllowUserToAddRows = false; DataGridView.MultiSelect = false; typeof(DataGridView). GetProperty("DoubleBuffered", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic). SetValue(DataGridView, true, null); } private void DataLoad() { BindingList<ScheduleModel> models = new BindingList<ScheduleModel>(); var currentScrollRowIndex = DataGridView.FirstDisplayedScrollingRowIndex; Query q = new Query() { QueryString = $"select * from 作業一覧 where 担当者名 = '{_SalesStaff}'" }; DataTable dt = q.ExecuteQuery(); for (int r = 0; r < dt.Rows.Count; r++) { models.Add(new ScheduleModel() { ID = dt.Rows[r]["ID"], 外注一覧ID = dt.Rows[r]["外注一覧ID"], 担当者名 = dt.Rows[r]["担当者名"], 名称 = dt.Rows[r]["名称"], 開始日 = dt.Rows[r]["開始日"], 終了日 = dt.Rows[r]["終了日"] }); } DataGridView.DataSource = models; if (currentScrollRowIndex > 0 && DataGridView.Rows.Count > 0 && DataGridView.Rows.Count >= currentScrollRowIndex) { DataGridView.FirstDisplayedScrollingRowIndex = currentScrollRowIndex; } } private void RowModified(DataGridViewRow targetRow) { targetRow.HeaderCell.Value = "*"; targetRow.DefaultCellStyle.ForeColor = Color.Blue; targetRow.DefaultCellStyle.Font = new Font("メイリオ", 10, FontStyle.Italic); } private void EventAttach() { DataGridView.CellValueChanged += (s, e) => { DataGridViewRow targetRow = DataGridView.Rows[e.RowIndex]; RowModified(targetRow); if (new Utility().CellToString(targetRow.Cells["Modified"]) == "新規") return; // Modifiedが新規の場合は変更にしない targetRow.Cells["Modified"].Value = "変更"; }; SaveButton.Click += (s, e) => { List<string> listSql = new List<string>(); bool existsNewRow = false; for (int r = 0; r < DataGridView.Rows.Count; r++) { var u = new Utility(); if (u.CellToString(DataGridView.Rows[r].Cells["Modified"]) == "新規") { existsNewRow = true; string rowName = u.QuoteReplace(u.CellToString(DataGridView.Rows[r].Cells["名称"])); string startDate = u.QuoteReplace(u.CellToString(DataGridView.Rows[r].Cells["開始日"])); string endDate = u.QuoteReplace(u.CellToString(DataGridView.Rows[r].Cells["終了日"])); if (startDate == "" && endDate != "") { startDate = endDate; } else if (startDate != "" && endDate == "") { endDate = startDate; } string sql = "insert into 作業一覧(担当者名,外注一覧ID,名称,開始日,終了日) values " + $"('{_SalesStaff}','{_SalesID}','{rowName}','{startDate}','{endDate}')"; listSql.Add(sql); } else if (u.CellToString(DataGridView.Rows[r].Cells["Modified"]) == "変更") { string id = u.QuoteReplace(u.CellToString(DataGridView.Rows[r].Cells["ID"])); string rowName = u.QuoteReplace(u.CellToString(DataGridView.Rows[r].Cells["名称"])); string startDate = u.QuoteReplace(u.CellToString(DataGridView.Rows[r].Cells["開始日"])); string endDate = u.QuoteReplace(u.CellToString(DataGridView.Rows[r].Cells["終了日"])); if (startDate == "" && endDate != "") { startDate = endDate; } else if (startDate != "" && endDate == "") { endDate = startDate; } string sql = "update 作業一覧 set " + $"名称 = '{rowName}', 開始日 = '{startDate}', 終了日 = '{endDate}' where ID = " + id; listSql.Add(sql); } } new Query().ExecuteNonQuery(listSql); DataLoad(); if (existsNewRow == true && DataGridView.Rows.Count > 0) { DataGridView.FirstDisplayedScrollingRowIndex = DataGridView.Rows.Count - 1; } }; NewRowButton.Click += (s, e) => { var u = new Utility(); bool existsNewRow = DataGridView.Rows.OfType<DataGridViewRow>().Any(x => u.CellToString(x.Cells["Modified"]) == "新規"); if (existsNewRow) { var currentModels = (BindingList<ScheduleModel>)DataGridView.DataSource; currentModels.Add(new ScheduleModel() { Modified = "新規" }); } else { var newModels = new BindingList<ScheduleModel>(); newModels.Add(new ScheduleModel() { Modified = "新規" }); DataGridView.DataSource = newModels; } }; DeleteRowButton.Click += (s, e) => { if (DataGridView.SelectedRows.Count <= 0) return; string id = new Utility().CellToString(DataGridView.CurrentRow.Cells["ID"]); if (id == "") return; DialogResult yesNo = MessageBox.Show("削除しますか?", "", MessageBoxButtons.YesNo); if (yesNo == DialogResult.No) return; var listSql = new List<string>(); listSql.Add("delete from 作業一覧 where ID = " + id); new Query().ExecuteNonQuery(listSql); MessageBox.Show("削除しました。"); DataLoad(); }; } } public class ScheduleModel { private string id; public object ID { set { id = Convert.ToString(value); } get { return id; } } private string modified; public object Modified { set { modified = Convert.ToString(value); } get { return modified; } } private string parentID; public object 外注一覧ID { set { parentID = Convert.ToString(value); } get { return parentID; } } private string staffName; public object 担当者名 { set { staffName = Convert.ToString(value); } get { return staffName; } } private string rowName; public object 名称 { set { rowName = Convert.ToString(value); } get { return rowName; } } private string startDate; public object 開始日 { set { try { var dt = DateTime.Parse(Convert.ToString(value)); startDate = dt.ToString("yyyy/MM/dd"); } catch { startDate = ""; } } get { return startDate; } } private string endDate; public object 終了日 { set { try { var dt = DateTime.Parse(Convert.ToString(value)); endDate = dt.ToString("yyyy/MM/dd"); } catch { endDate = ""; } } get { return endDate; } } } } |