Skip to content

Commit 6bc2efd

Browse files
committed
1.改选中的表数据类型;
2.TODO 检查行数是否超出索引;
1 parent d24b5bd commit 6bc2efd

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

TableML/TableMLGUI/ExcelHelper.cs

+3
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ public static bool ToCSharpSyntax(string filePath)
6868
}
6969
}
7070
Worksheet = Workbook.GetSheetAt(0);
71+
//TODO 检查行数是否超出索引
72+
// Worksheet.RowBreaks
7173
List<ICell> cells = Worksheet.GetRow(4).Cells;
7274
foreach (ICell cell in cells)
7375
{
@@ -109,6 +111,7 @@ public static bool ToCSharpSyntax(string filePath)
109111
fileStream.Flush();
110112
}
111113
}
114+
Console.WriteLine("更新表数据类型:{0}", filePath);
112115
return true;
113116
}
114117

TableML/TableMLGUI/MainForm.Designer.cs

+14-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

TableML/TableMLGUI/MainForm.cs

+12
Original file line numberDiff line numberDiff line change
@@ -244,5 +244,17 @@ private void btnCheckCSKW_Click(object sender, EventArgs e)
244244
ExcelHelper.CheckHasKeyWords(fileList);
245245
}
246246
}
247+
248+
private void btnUpdateSelectCSSyntax_Click(object sender, EventArgs e)
249+
{
250+
if (!string.IsNullOrEmpty(tbFileList.Text))
251+
{
252+
foreach (string filePath in fileList)
253+
{
254+
ExcelHelper.ToCSharpSyntax(filePath);
255+
}
256+
Console.WriteLine("数据类型更新完成");
257+
}
258+
}
247259
}
248260
}

0 commit comments

Comments
 (0)