`
isiqi
  • 浏览: 16026087 次
  • 性别: Icon_minigender_1
  • 来自: 济南
社区版块
存档分类
最新评论

在 C# 中使用画笔

阅读更多

出处

http://www.xuexiziliao.org/softdev/C/C-dlkz0277.html

在 C# 中使用画笔

public class Rectangle : Shape

{

protected Point m_Start;

protected Point m_End;

public Rectangle(Point start, Point end, Color fgColor)

{

m_Start = start;

m_End = end;

m_Color = fgColor;

}

public override void Draw(Form canvas)

{

if (canvas == null)

{

return;

}

InitializeGraphics(canvas);

Point startPoint = canvas.PointToScreen(m_Start);

Point endPoint = canvas.PointToScreen(m_End);

MainForm mainForm = (MainForm)canvas;

Color bgColor = GetBackgroundColor(m_Color);

Size rectSize = new Size(m_End.X - m_Start.X, m_End.Y - m_Start.Y);

System.Drawing.Rectangle rectToDraw = new System.Drawing.Rectangle(startPoint, rectSize);

ControlPaint.DrawReversibleFrame(rectToDraw, bgColor, FrameStyle.Thick);

}

}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics