(object sender, EventArgs e)
| 21 | } |
| 22 | |
| 23 | private void check(object sender, EventArgs e) |
| 24 | { |
| 25 | MetroFramework.Controls.MetroTextBox hexBox = (MetroFramework.Controls.MetroTextBox)sender; |
| 26 | if(hexBox.Text.Length != 7) |
| 27 | { |
| 28 | //TODO |
| 29 | valid = false; |
| 30 | |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | private void validate(object sender, EventArgs e) |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected