(System.Windows.Forms.Panel colorPanel)
| 13 | bool valid = false; |
| 14 | |
| 15 | public HexBox(System.Windows.Forms.Panel colorPanel) : base() |
| 16 | { |
| 17 | this.colorPanel = colorPanel; |
| 18 | |
| 19 | this.TextChanged += new EventHandler(validate); |
| 20 | this.LostFocus += new EventHandler(check); |
| 21 | } |
| 22 | |
| 23 | private void check(object sender, EventArgs e) |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected