다음을 통해 공유


Shape.Parent 속성

도형 또는 선 컨트롤의 부모 컨테이너를 가져오거나 설정 합니다.

네임스페이스:  Microsoft.VisualBasic.PowerPacks
어셈블리:  Microsoft.VisualBasic.PowerPacks.Vs(Microsoft.VisualBasic.PowerPacks.Vs.dll)

구문

‘선언
<BrowsableAttribute(False)> _
Public Property Parent As ShapeContainer
[BrowsableAttribute(false)]
public ShapeContainer Parent { get; set; }
[BrowsableAttribute(false)]
public:
property ShapeContainer^ Parent {
    ShapeContainer^ get ();
    void set (ShapeContainer^ value);
}
[<BrowsableAttribute(false)>]
member Parent : ShapeContainer with get, set
function get Parent () : ShapeContainer
function set Parent (value : ShapeContainer)

속성 값

형식: Microsoft.VisualBasic.PowerPacks.ShapeContainer
A ShapeContainer 의 부모 또는 컨테이너 컨트롤을 나타냅니다.

설명

A LineShape, OvalShape, 또는 RectangleShape 컨트롤에만 포함 될 수 있습니다 있는 ShapeContainer 캔버스 선 및 도형 컨트롤에 대 한 역할을 수행 하는 개체입니다.

디자인 타임에 폼 또는 컨테이너에 있는 선 또는 도형을 추가 하는 ShapeContainer 아직 없으면 자동으로 만들어집니다.Parent 선 또는 모양 속성을 설정 하는 ShapeContainer.Parent 속성에는 ShapeContainer 를 선이나 모양을 추가 되었습니다 폼 이나 컨테이너 컨트롤에 설정 된.

만들 때 선 또는 모양 런타임에 사용 하 여 해당 New 메서드를 설정 해야 합니다 그 Parent 속성에는 ShapeContainer.경우는 ShapeContainer 이미 폼 또는 컨테이너에 대 한 설정 합니다에 Parent 속성에는 ShapeContainer.그렇지 않은 경우 ShapeContainer 존재를 만들 수 있습니다는 ShapeContainer 를 사용 하 여는 New 메서드 및 집합 해당 Parent 속성에 폼 또는 컨테이너.

[!참고]

두 개 이상 만들지 않습니다 ShapeContainer 각 폼 또는 컨테이너입니다. 이렇게 하면 예기치 않은 동작이 발생할 수 있습니다.디자인 타임 선 또는 도형 컨트롤을 폼 또는 컨테이너에 프로그래밍 방식으로 만들려면 코드를 작성 한 후 추가 하는 경우 사용 하도록 해당 코드를 수정 해야를 ShapeContainer 디자이너에서 만든.

예제

다음 예제는 기존 ShapeContainer 설정 하 고는 Parent 속성에는 OvalShape 컨트롤을 사용 하 여 런타임에 생성 된는 New 메서드.

Dim NewOval As New OvalShape
Dim i As Integer
Dim found As Boolean
' Loop through the Controls collection.
For i = 0 To Me.Controls.Count - 1
    ' If a ShapeContainer is found, make it the parent.
    If TypeOf Controls.Item(i) Is ShapeContainer Then
        NewOval.Parent = Controls.Item(i)
        found = True
        Exit For
    End If
Next
' If no ShapeContainer is found, create one and set the parents.
If found = False Then
    Dim sc As New ShapeContainer
    sc.Parent = Me
    NewOval.Parent = sc
End If
NewOval.Size = New Size(200, 300)
OvalShape NewOval = new OvalShape();
int i;
bool found = false;
// Loop through the Controls collection.
for (i = 0; i < this.Controls.Count; i++)
{
    // If a ShapeContainer is found, make it the parent.
    if (this.Controls[i] is ShapeContainer)
    {
        NewOval.Parent = ((ShapeContainer)Controls[i]);
        found = true;
        break;
    }
}
// If no ShapeContainer is found, create one and set the parents.
if (found == false)
{
    ShapeContainer sc = new ShapeContainer();
    sc.Parent = this;
    NewOval.Parent = sc;
}
NewOval.Size = new Size(200, 300);
found = true;

.NET Framework 보안

  • 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.

참고 항목

참조

Shape 클래스

Microsoft.VisualBasic.PowerPacks 네임스페이스

기타 리소스

방법: LineShape 컨트롤로 선 그리기(Visual Studio)

방법: OvalShape 및 RectangleShape 컨트롤을 사용하여 도형 그리기(Visual Studio)

Line 및 Shape 컨트롤 소개(Visual Studio)