什么命名空间中的类和接口用于创建web应用程序的页面(什么是命名空间)
大家好,我是小东,我来为大家解答以上问题。什么命名空间中的类和接口用于创建web应用程序的页面,什么是命名空间很多人还不知道,现在让我们一起来看看吧!
1、.NET Framework 类库 Graphics.DrawPolygon 方法 (Pen, Point[]) 绘制由一组 Point 结构定义的多边形。
2、 命名空间:System.Drawing 程序集:System.Drawing(在 system.drawing.dll 中) 参数 pen Pen,它确定多边形的颜色、宽度和样式。
3、 points Point 结构数组,这些结构表示多边形的顶点。
4、 数组中的每对相邻的两个点指定多边形的一条边。
5、另外,如果数组的最后一个点和第一个点不重合,则这两个点指定多边形的最后一条边。
6、 下面的代码示例设计用于 Windows 窗体,它需要 PaintEventArgse(这是 Paint 事件处理程序的参数)。
7、代码执行下列操作: 创建黑色钢笔。
8、 创建一个数组,该数组由表示多边形顶点的七个点组成。
9、 将该多边形绘制到屏幕。
10、 public void DrawPolygonPoint(PaintEventArgs e) { // Create pen. Pen blackPen = new Pen(Color.Black, 3); // Create points that define polygon. Point point1 = new Point(50, 50); Point point2 = new Point(100, 25); Point point3 = new Point(200, 5); Point point4 = new Point(250, 50); Point point5 = new Point(300, 100); Point point6 = new Point(350, 200); Point point7 = new Point(250, 250); Point[] curvePoints = { point1, point2, point3, point4, point5, point6, point7 }; // Draw polygon to screen. e.Graphics.DrawPolygon(blackPen, curvePoints); }。
本文到此讲解完毕了,希望对大家有帮助。