Windowsを作成しましたUserControl
。実際には、を使用してGrid
(つまり、垂直線と水平線)をペイントしGraphics
ます。ユーザーは各セルの高さと幅を変更でき、それに応じてGrid
更新されます。OnPaint
グリッドを作成したイベントをオーバーライドします。以前 SetStyle(ControlStyles.Opaque, true)
は透明にしていました。フォームでこのコントロールを使用し、そこからセルの高さと幅の値を変更しましたが、不透明なため、新しいグリッドが前のグリッドと重なっていて、不器用になっています。これを解決するにはどうすればよいですか?
UserControlコード:
public partial class Grid : UserControl
{
public Grid()
{
InitializeComponent();
SetStyle(ControlStyles.Opaque, true);
}
private float _CellWidth = 10, _CellHeight = 10;
private Color _GridColor = Color.Black;
public float CellWidth
{
get
{
return this._CellWidth;
}
set
{
this._CellWidth = value;
}
}
public float CellHeight
{
get
{
return this._CellHeight;
}
set
{
this._CellHeight = value;
}
}
public Color GridColor
{
get
{
return this._GridColor;
}
set
{
this._GridColor = value;
}
}
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
Graphics g;
float iHeight = this.Height;
float iWidth = this.Width;
g = e.Graphics;
Pen myPen = new Pen(GridColor);
myPen.Width = 1;
if (this.CellWidth > 0 && this.CellHeight > 0)
{
for (float X = 0; X <= iWidth; X += this.CellWidth)
{
g.DrawLine(myPen, X, 0, X, iHeight);
}
for (float Y = 0; Y <= iHeight; Y += this.CellHeight)
{
g.DrawLine(myPen, 0, Y, iWidth, Y);
}
}
}
public override void Refresh()
{
base.ResumeLayout(true);
base.Refresh();
ResumeLayout(true);
}
}
フォームコード:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void btnBrowse_Click(object sender, EventArgs e)
{
try
{
if (ofdImage.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
pbImage.Image = Image.FromFile(ofdImage.FileName);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
private void btnShowGrid_Click(object sender, EventArgs e)
{
if (grid1.Visible)
{
grid1.Visible = false;
btnShowGrid.Text = "Show";
}
else
{
grid1.Visible = true;
btnShowGrid.Text = "Hide";
}
}
private void btnGridCellMaximize_Click(object sender, EventArgs e)
{
grid1.CellHeight += 1;
grid1.CellWidth += 1;
grid1.Refresh();
}
private void btnGridCellMinimize_Click(object sender, EventArgs e)
{
grid1.CellHeight -= 1;
grid1.CellWidth -= 1;
grid1.Refresh();
}
}