MainMenu.CloneMenu 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
public:
virtual System::Windows::Forms::MainMenu ^ CloneMenu();
public virtual System.Windows.Forms.MainMenu CloneMenu ();
override this.CloneMenu : unit -> System.Windows.Forms.MainMenu
Public Overridable Function CloneMenu () As MainMenu
반환
복제된 메뉴를 나타내는 MainMenu입니다.
예제
다음 코드 예제에서는 메서드를 GetForm 사용 하 여 현재 폼에 MainMenu 부모 인지 확인 합니다. 예제 코드 GetForm 의 호출이 반환null
되지 않으면 코드는 메서드를 사용하는 CloneMenu 메뉴 구조를 MainMenu 복제합니다. 그런 다음 코드는 새 복사본 MainMenu 에서 속성을 true로 MainMenu 설정 RightToLeft 하여 오른쪽에서 왼쪽 텍스트를 지원하는 언어에 사용할 수 있는 속성을 만듭니다. 이 예제에서는 MainMenu 이름이 mainMenu1
지정된 생성자가 있어야 합니다.
void CloneMyMenu()
{
// Determine if mainMenu1 is currently hosted on the form.
if ( mainMenu1->GetForm() != nullptr )
{
// Create a copy of the MainMenu that is hosted on the form.
MainMenu^ mainMenu2 = mainMenu1->CloneMenu();
// Set the RightToLeft property for mainMenu2.
mainMenu2->RightToLeft = ::RightToLeft::Yes;
}
}
public void CloneMyMenu()
{
// Determine if mainMenu1 is currently hosted on the form.
if(mainMenu1.GetForm() != null)
{
// Create a copy of the MainMenu that is hosted on the form.
MainMenu mainMenu2 = mainMenu1.CloneMenu();
// Set the RightToLeft property for mainMenu2.
mainMenu2.RightToLeft = RightToLeft.Yes;
}
}
Public Sub CloneMyMenu()
' Determine if mainMenu1 is currently hosted on the form.
If (mainMenu1.GetForm() IsNot Nothing) Then
' Create a copy of the MainMenu that is hosted on the form.
Dim mainMenu2 As MainMenu = mainMenu1.CloneMenu()
' Set the RightToLeft property for mainMenu2.
mainMenu2.RightToLeft = RightToLeft.Yes
End If
End Sub
설명
이 메서드를 사용하여 에 저장된 메뉴 구조의 복사본을 MainMenu만들 수 있습니다. 이 메서드를 사용하여 새 MainMenu메뉴의 기초로 저장된 MainMenu 메뉴 구조를 다시 사용할 수 있습니다. 예를 들어 기존 MainMenu 항목과 메뉴 항목이 동일하지만 추가 MenuItem 개체가 추가되는 메뉴 구조를 만들려면 이 메서드를 사용하여 CloneMenu 원본 MainMenu 의 복사본을 만든 다음 복제된 MainMenu개체에 새 MenuItem 개체를 추가할 수 있습니다.