(object sender, EventArgs e)
| 184 | } |
| 185 | |
| 186 | private void toolStripButton_remove_Click(object sender, EventArgs e) |
| 187 | { |
| 188 | if (listView_charmap.SelectedItems.Count > 0) |
| 189 | { |
| 190 | if (DialogResult.Yes == MessageBox.Show("是否删除选中项目?", "删除字符", MessageBoxButtons.YesNo, MessageBoxIcon.Question)) |
| 191 | { |
| 192 | foreach (ListViewItem x in listView_charmap.SelectedItems) |
| 193 | { |
| 194 | _Def.CharList.Remove((FontDef.CharDef)x.Tag); |
| 195 | } |
| 196 | |
| 197 | RefreshAll(); |
| 198 | } |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | private void toolStripButton_up_Click(object sender, EventArgs e) |
| 203 | { |
nothing calls this directly
no outgoing calls
no test coverage detected