Shape.BringToFront 메서드
선 또는 셰이프 컨트롤이 z 순서의 맨 앞으로 가져옵니다.
네임스페이스: Microsoft.VisualBasic.PowerPacks
어셈블리: Microsoft.VisualBasic.PowerPacks.Vs(Microsoft.VisualBasic.PowerPacks.Vs.dll)
구문
‘선언
Public Sub BringToFront
public void BringToFront()
public:
void BringToFront()
member BringToFront : unit -> unit
public function BringToFront()
설명
BringToFront 위치를 메서드를 사용할 수 있는 LineShape, OvalShape, 또는 RectangleShape 컨트롤 앞에 다른 모든 선 및 도형 컨트롤에 지정 된 컨테이너입니다.다른 종류의 컨테이너에 있는 컨트롤 앞에 컨트롤을 배치 하지는 않습니다. 항상 line 및 shape 컨트롤을 사용 하 여 그린 그래픽 다른 컨트롤 뒤에 표시 됩니다.
예제
다음 예제에서는 BringToFront 메서드가 런타임에 도형의 z 순서를 변경 합니다.이 예제에서는 있어야는 RectangleShape RectangleShape1 이라는 컨트롤 하는 OvalShape 폼에 OvalShape1 이라는 컨트롤.최상의 결과 가지 색 컨트롤을 설정 하 고 서로 겹쳐 있음을 해야 합니다.
Private Sub Shapes_Click(
ByVal sender As System.Object,
ByVal e As System.EventArgs
) Handles RectangleShape1.Click, OvalShape1.Click
' Bring the control that was clicked to the top of the z-order.
sender.BringToFront()
End Sub
private void Shapes_Click(System.Object sender, System.EventArgs e)
{
// Bring the control that was clicked to the top of the z-order.
((Shape)sender).BringToFront();
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.
참고 항목
참조
Microsoft.VisualBasic.PowerPacks 네임스페이스
기타 리소스
방법: LineShape 컨트롤로 선 그리기(Visual Studio)
방법: OvalShape 및 RectangleShape 컨트롤을 사용하여 도형 그리기(Visual Studio)