vb picturebox控制元件中可以畫曲線嗎

2022-04-27 01:42:40 字數 2572 閱讀 6603

1樓:

dim b as new bitmap(picturebox1.width, picturebox1.height)

dim g as graphics = graphics.fromimage(b)

g.clear(color.white)

dim p as new pen(color.black)

p.endcap = drawing2d.linecap.arrowanchor

g.drawline(p, 30, picturebox1.height - 30, 30, 30)

g.drawline(p, 30, picturebox1.height - 30, picturebox1.

width - 30, picturebox1.height - 30)

dim i as integer

dim bs as new solidbrush(color.green)

dim po as new point

po.x = 0

po.y = picturebox1.height - 35

for i = 700 to 1000 step 50

g.drawstring(i, me.font, bs, po.x, po.y)

g.drawline(p, po.x + 28, po.y + 5, po.x + 30, po.y + 5)

po.y -= (picturebox1.height - 100) / 6

next

po.x = 30

po.y = picturebox1.height - 30

for i = 0 to 40 step 5

g.drawstring(i, me.font, bs, po.x, po.y + 5)

g.drawline(p, po.x, po.y + 2, po.x, po.y)

po.x += (picturebox1.width - 100) / 8

next

picturebox1.image = b

2樓:vb程式設計解放雙手

當然可以的!用vb做儀表盤一般都要畫曲線的

如何在vb中picturebox控制元件裡畫線

3樓:

picture1.line (5000, 1000)-(0, 1000), rgb(255, 0, 0)

picture1為picturebox控制元件(5000, 1000) (0, 1000) 為座標rgb(255, 0, 0)為線條色彩

vb.net中如何在picturebox畫線,有什麼函式?

4樓:雷愛曼雙魚

dim b as new bitmap(picturebox1.width, picturebox1.height)

dim g as graphics = graphics.fromimage(b)

g.clear(color.white)

dim p as new pen(color.black)

p.endcap = drawing2d.linecap.arrowanchor

g.drawline(p, 30, picturebox1.height - 30, 30, 30)

g.drawline(p, 30, picturebox1.height - 30, picturebox1.

width - 30, picturebox1.height - 30)

dim i as integer

dim bs as new solidbrush(color.green)

dim po as new point

po.x = 0

po.y = picturebox1.height - 35

for i = 700 to 1000 step 50

g.drawstring(i, me.font, bs, po.x, po.y)

g.drawline(p, po.x + 28, po.y + 5, po.x + 30, po.y + 5)

po.y -= (picturebox1.height - 100) / 6

next

po.x = 30

po.y = picturebox1.height - 30

for i = 0 to 40 step 5

g.drawstring(i, me.font, bs, po.x, po.y + 5)

g.drawline(p, po.x, po.y + 2, po.x, po.y)

po.x += (picturebox1.width - 100) / 8

next

picturebox1.image = b

如何在vb中的picturebox 裡畫圖?

5樓:匿名使用者

首先現在**框中畫出必要的圖形控制元件物件

然後在**中只要將畫圖所需用的控制元件物件或屬性前面加上**框物件名picture1就好了

怎麼新增控制元件,vb中怎麼新增控制元件

1開啟visual studio 2012軟體,新建一個空白的web窗體。選擇檔案 新建 在彈出的視窗新建一個空白 即可。注意檔案的儲存位置以及檔案的名稱,養成良好的程式設計習慣。2新增空白窗體。右擊剛剛新建的 檔案,選擇新增 新增新項即可,然後選擇第一個窗體建立,注意檔案的名稱。3選擇新建好的網頁...

C中怎麼將DataGridView控制元件中選中行的資料分別賦

一般可以按照兩種方式來做,一是按照列名,二是按照第幾列 如果你的name和class是列名的話,就是 string a datagridview1.currentrow.cells name value.tostring string b datagridview1.currentrow.cells...

vb中的TextBox控制元件SelText屬性有什麼用,為什麼屬性板中沒有

seltext屬性的作用 1可以讓程式知道選中文字內容是什麼,如你選中的內容是 textbox1.seltext 2可以隨時替換輸入掉,這個要結合selstart跟sellength屬性,在經常查詢輸入,或資料資料輸入時經常用到這個seltext屬性,例如 在考勤系統中,員工刷卡時,馬上在文字框中顯...