Add LineShape programatically in VB.NET WinForms

人盡茶涼 提交于 2019-12-12 01:44:39

问题


How do you add a LineShape programmatically in VB.NET WinForms?

I'm looking to write something like you would for a Label , CheckBox or whatever else:

Dim somelabel as New Label
somelabel.Text = "Whatever"
somelabel.Location = New Point(200, 200)
Me.Controls.Add(somelabel)

Etc.

My purpose is to create thin dividing lines between the rows and columns of 16 Labels that form a 4x4 grid.

I appreciate that, since LineShape is a part of VB PowerPacks, this may present some difficulties, such as having to use Imports ... or, if really necessary, import a .dll. But I'd like to see all your ideas/solutions!


回答1:


First, import the powerpacks namespace to give you access to the control:

Imports Microsoft.VisualBasic.PowerPacks

Then you could do it like this:

Dim startx As Integer
Dim starty As Integer
Dim endx As Integer
Dim endy As Integer
Dim yourline As New LineShape(startx, starty, endx, endy)

Where startx = the x starting position, starty = the y starting position, endx = the ending x position and endy = the ending y position. If you want to put it into a canvas, simply:

Dim yourcanvas As ShapeContainer
canvas.Parent = formName
yourline.Parent = canvas

For more information and an API reference, go to: http://msdn.microsoft.com/en-us/library/bb918067.aspx



来源:https://stackoverflow.com/questions/24490437/add-lineshape-programatically-in-vb-net-winforms

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!