时间:2021-05-02
本文演示了在C#中使用画笔的源代码,供大家参考使用。下面的源代码中首先定义了一个矩形类(Rectangle),这个类从Shape类中派生出来,在类中定义了两个变量成员来代表画笔的起点和终点。
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); } }
作者:jspfuns(原创)
本文源自:翔宇亭——IT乐园(http://),转载请保留此信息!声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例讲述了C#画笔Pen用法。分享给大家供大家参考。具体如下:usingSystem;usingSystem.Collections.Generic;usi
本文实例汇总了C#中@的用法,对C#程序设计来说有不错的借鉴价值。具体如下:一字符串中的用法1.学过C#的人都知道C#中字符串常量可以以@开头声名,这样的优点是
本文实例讲述了C#画笔Pen保存和恢复图形对象的设置方法。分享给大家供大家参考。具体如下:usingSystem;usingSystem.Collections
本文实例讲述了C#画笔Pen画虚线的方法。分享给大家供大家参考。具体实现方法如下:usingSystem;usingSystem.Collections.Gen
本文实例讲述了C#画笔Pen绘制曲线的方法。分享给大家供大家参考。具体实现方法如下:usingSystem;usingSystem.Collections.Ge