共用方式為


HOW TO:使用 LineShape 控制項繪製線條 (Visual Studio)

更新: 2008 年 7 月

在設計階段和執行階段,您都可以使用 LineShape 控制項在表單或容器 (Container) 上繪製水平線、垂直線或對角線。

注意:在下列指示中,某些 Visual Studio 使用者介面項目的名稱和位置可能會與您電腦所顯示的有所不同。您所擁有的 Visual Studio 版本和使用的設定決定了這些項目。如需詳細資訊,請參閱Visual Studio 設定

若要在設計階段繪製線條

  1. 從 [工具箱] 的 [Visual Basic PowerPacks] 索引標籤中,將 LineShape 控制項拖曳到表單或容器控制項。

  2. 拖曳縮放控點 (Sizing Handle) 並移動控制軸,以調整線條的大小和位置。

    您也可以在 [屬性] 視窗中變更 X1、X2、Y1 和 Y2 屬性,以調整線條的大小和位置。

  3. 在 [屬性] 視窗中,選擇性地設定其他屬性 (例如 BorderStyle 或 BorderColor) 來變更線條的外觀。

若要在執行階段繪製線條

  1. 在 [專案] 功能表上,按一下 [加入參考]。

  2. 在 [加入參考] 對話方塊中,選取 [Microsoft.VisualBasic.PowerPacks.VS],然後按一下 [確定]。

  3. 在 [程式碼編輯器] 中,將 Imports 或 using 陳述式 (Statement) 加入至模組的最上方:

    Imports Microsoft.VisualBasic.PowerPacks
    
    using Microsoft.VisualBasic.PowerPacks;
    
  4. 在 Event 程序中,加入下列程式碼:

    Dim canvas As New ShapeContainer
    Dim theLine As New LineShape
    ' Set the form as the parent of the ShapeContainer.
    canvas.Parent = Me
    ' Set the ShapeContainer as the parent of the LineShape.
    theLine.Parent = canvas
    ' Set the starting and ending coordinates for the line.
    theLine.StartPoint = New System.Drawing.Point(0, 0)
    theLine.EndPoint = New System.Drawing.Point(640, 480)
    

請參閱

工作

HOW TO:使用 OvalShape 和 RectangleShape 控制項繪製圖案 (Visual Studio)

概念

Line 和 Shape 控制項簡介 (Visual Studio)

參考

LineShape

變更記錄

日期

記錄

原因

2008 年 7 月

加入主題。

SP1 功能變更。