(object sender, EventArgs e)
| 262 | } |
| 263 | |
| 264 | private void ToolStripMenuItem_new_Click(object sender, EventArgs e) |
| 265 | { |
| 266 | if (MessageBox.Show("你确定要新建字模?\n\n所有未保存的修改将会丢失。", "新建字模", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) |
| 267 | { |
| 268 | _FileName = String.Empty; |
| 269 | _Def = new FontDef(); |
| 270 | |
| 271 | RefreshAll(); |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | private void ToolStripMenuItem_open_Click(object sender, EventArgs e) |
| 276 | { |
nothing calls this directly
no outgoing calls
no test coverage detected