Shape.GetContainerControl 方法

返回下 ContainerControl 在父控件 line 或 shape 控件链。

命名空间:  Microsoft.VisualBasic.PowerPacks
程序集:  Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)

语法

声明
Public Function GetContainerControl As IContainerControl
public IContainerControl GetContainerControl()
public:
IContainerControl^ GetContainerControl()
member GetContainerControl : unit -> IContainerControl 
public function GetContainerControl() : IContainerControl

返回值

类型:System.Windows.Forms.IContainerControl
表示控件的父级的 IContainerControl

备注

LineShapeOvalShapeRectangleShape 控件, Parent 属性始终返回 ShapeContainer 对象。 GetContainerControl 方法可用于获取 ShapeContainer 对象的父级。

示例

下面的示例将包含一个 OvalShape 控件 Panel 控件的 BackColor 。 此示例要求您具有一个 Panel 控件 Panel1 的、名为在窗体的 OvalShape1 的一个 OvalShape 控件。

Private Sub OvalShape1_Click() Handles OvalShape1.Click
    ' Declare a Control.
    Dim ctl As Control
    ' Find the container for the OvalShape.
    ctl = OvalShape1.GetContainerControl.ActiveControl.Parent
    ' Change the color of the container.
    ctl.BackColor = Color.Blue
End Sub
private void ovalShape1_Click(System.Object sender, System.EventArgs e)
{
    // Declare a Control.
    Control ctl;
    // Find the container for the OvalShape.
    ctl = ((Control)ovalShape1.GetContainerControl());
    // Change the color of the container.
    ctl.BackColor = Color.Blue;
}

.NET Framework 安全性

请参见

参考

Shape 类

Microsoft.VisualBasic.PowerPacks 命名空间

其他资源

如何:使用 LineShape 控件绘制直线 (Visual Studio)

如何:使用 OvalShape 和 RectangleShape 控件绘制形状 (Visual Studio)

Line 和 Shape 控件简介 (Visual Studio)