()
| 90 | } |
| 91 | |
| 92 | void Repaint() |
| 93 | { |
| 94 | _Def.RenderTexture(); |
| 95 | pictureBox_tex.Image = _Def.Texture; |
| 96 | pictureBox_tex.Width = _Def.Texture.Width; |
| 97 | pictureBox_tex.Height = _Def.Texture.Height; |
| 98 | |
| 99 | pictureBox_tex.Invalidate(); |
| 100 | } |
| 101 | |
| 102 | private Pen _M_ImageMargin = new Pen(Color.Blue); |
| 103 | private Pen _M_RealMargin = new Pen(Color.LightBlue); |
nothing calls this directly
no test coverage detected