【C#】Graphics.DrawLine畫虛線
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
private void MainForm_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
{
//點(diǎn)的大小, 值一樣則是畫點(diǎn)
float[] BlueValues = {5, 15 20,25s};
//顏色及畫筆大小設(shè)置
Pen pen = new Pen(Color.Blue, 1);
//指定設(shè)定值,此處可以更改各種線條樣式
pen.DashStyle = System.Drawing.Drawing2D.DashStyle.Custom;
pen.DashPattern = new float[] { 5, 5 };
//畫一條豎線
e.Graphics.DrawLine(pen, new Point(20, 50), new Point(20, 150));
}
該文章在 2022/8/8 18:47:06 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |