- 871 名前:デフォルトの名無しさん mailto:sage [2007/06/28(木) 10:00:47 ]
- >>870
LabelのPaintイベントで自分で描画する。 例えば Label1のPaintイベントに e.Graphics.DrawRectangle(New Pen(SystemColors.ControlDarkDark), New Rectangle(0, 0, Label1.Width - 1, Label1.Height - 1)) e.Graphics.DrawLine(New Pen(SystemColors.ControlLightLight), 0, 0, Label1.Width - 2, 0) e.Graphics.DrawLine(New Pen(SystemColors.ControlLightLight), 0, 0, 0, Label1.Height - 2) 微調整はお好みで。
|

|