文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>在 C# 中使用画笔

在 C# 中使用画笔

时间:2010-09-04  来源:上天入地

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;///www.qichepeijian.com
  }
  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);
  }
  }

排行榜 更多 +
盒子小镇2游戏手机版下载

盒子小镇2游戏手机版下载

冒险解谜 下载
世界盒子模组版下载最新版本

世界盒子模组版下载最新版本

模拟经营 下载
音乐搜索app最新版本下载

音乐搜索app最新版本下载

趣味娱乐 下载