()
| 13 | private HexBox hexBox; |
| 14 | |
| 15 | public ColorPanel() : base() |
| 16 | { |
| 17 | this.BackColor = Color.Chartreuse; |
| 18 | this.Location = new Point(131, 19); |
| 19 | this.Name = "videoColorPanel"; |
| 20 | this.Size = new Size(64, 39); |
| 21 | this.TabIndex = 13; |
| 22 | this.Click += new EventHandler(this.setPanelColor); |
| 23 | } |
| 24 | |
| 25 | public void setPanelColor(object sender, EventArgs e) |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected