C#畫筆使用復(fù)合數(shù)組繪制單個矩形的方法
更新時間:2015年06月11日 15:37:16 作者:zhuzhao
這篇文章主要介紹了C#畫筆使用復(fù)合數(shù)組繪制單個矩形的方法,涉及C#使用畫筆繪制圖形的相關(guān)技巧,需要的朋友可以參考下
本文實例講述了C#畫筆使用復(fù)合數(shù)組繪制單個矩形的方法。分享給大家供大家參考。具體實現(xiàn)方法如下:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Drawing.Drawing2D; namespace WindowsApplication2 { public partial class Form11 : Form { public Form11() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Pen pen3 = new Pen(Color.Blue, 20); pen3.CompoundArray = new float[] { 0.0f, 0.25f, 0.45f, 0.55f, 0.75f, 1.0f }; Graphics g3 = this.CreateGraphics(); g3.DrawRectangle(pen3, new Rectangle(50, 50, 300, 200)); } } }
希望本文所述對大家的C#程序設(shè)計有所幫助。
您可能感興趣的文章:
- C# 字符串string和內(nèi)存流MemoryStream及比特數(shù)組byte[]之間相互轉(zhuǎn)換
- C#中的數(shù)組作為參數(shù)傳遞所引發(fā)的問題
- C#編程中使用ref和out關(guān)鍵字來傳遞數(shù)組對象的用法
- 深入解析C#中的交錯數(shù)組與隱式類型的數(shù)組
- C#中用foreach語句遍歷數(shù)組及將數(shù)組作為參數(shù)的用法
- 詳解C#編程中一維數(shù)組與多維數(shù)組的使用
- C#求數(shù)組中元素全排列的方法
- C#獲取數(shù)組中最大最小值的方法
- C#中結(jié)構(gòu)體和字節(jié)數(shù)組轉(zhuǎn)換實現(xiàn)
- C#數(shù)組的常用操作方法小結(jié)