MenuItem.Index 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
부모 메뉴에서의 메뉴 항목 위치를 나타내는 값을 가져오거나 설정합니다.
public:
property int Index { int get(); void set(int value); };
[System.ComponentModel.Browsable(false)]
public int Index { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Index : int with get, set
Public Property Index As Integer
속성 값
부모 메뉴에서의 메뉴 항목 위치를 나타내며 0부터 시작하는 인덱스입니다.
- 특성
예외
할당된 값이 0보다 작거나 항목 수보다 큰 경우
예제
메뉴에서 두 개의 메뉴 항목의 위치를 전환 하는 다음 코드 예제입니다. 다음 코드 예제에서는 두 개의 MenuItem 개체가 명명 된 만들어집니다 menuItem1
고 menuItem2
입니다. 합니다 menuItem1
메뉴 항목이 메뉴에서 한 칸 아래로 이동 하는 동안 menuItem2
한 위치 위로 이동 합니다.
public:
void SwitchMyMenuItems()
{
// Move menuItem1 down one position in the menu order.
menuItem1->Index = menuItem1->Index + 1;
// Move menuItem2 up one position in the menu order.
menuItem2->Index = menuItem2->Index - 1;
}
public void SwitchMyMenuItems()
{
// Move menuItem1 down one position in the menu order.
menuItem1.Index = menuItem1.Index + 1;
// Move menuItem2 up one position in the menu order.
menuItem2.Index = menuItem2.Index - 1;
}
Public Sub SwitchMyMenuItems()
' Move menuItem1 down one position in the menu order.
menuItem1.Index = menuItem1.Index + 1
' Move menuItem2 up one position in the menu order.
menuItem2.Index = menuItem2.Index - 1
End Sub
설명
이 속성은 부모 메뉴의 메뉴 항목 컬렉션에서 메뉴 항목의 인덱싱된 위치를 제공 합니다. 해당 메뉴 내에서 다른 위치에 메뉴 항목 위치를 변경 하려면이 속성을 사용할 수 있습니다. 만들 때이 속성을 사용할 수도 있습니다는 MenuItem 생성 시 메뉴 구조에서의 위치를 지정 합니다.