다음을 통해 공유


MainMenu.RightToLeft 속성

정의

컨트롤의 텍스트가 오른쪽에서 왼쪽으로 표시되는지 여부를 가져오거나 설정합니다.

public:
 virtual property System::Windows::Forms::RightToLeft RightToLeft { System::Windows::Forms::RightToLeft get(); void set(System::Windows::Forms::RightToLeft value); };
public virtual System.Windows.Forms.RightToLeft RightToLeft { get; set; }
member this.RightToLeft : System.Windows.Forms.RightToLeft with get, set
Public Overridable Property RightToLeft As RightToLeft

속성 값

RightToLeft

RightToLeft 값 중 하나입니다.

예외

속성에 할당된 값이 RightToLeft 열거형의 올바른 멤버가 아닌 경우

예제

다음 코드 예제에서는 메서드를 GetForm 사용 하 여 현재 폼에 MainMenu 부모 인지 확인 합니다. 예제 코드 GetForm 의 호출이 반환null되지 않으면 코드는 메서드를 사용하는 CloneMenu 메뉴 구조를 MainMenu 복제합니다. 그런 다음, 예제 코드는 속성을 RightToLeft.Yes 새 복사본에 MainMenu 설정 RightToLeft 하여 오른쪽에서 왼쪽 텍스트를 지원하는 언어에 사용할 수 있는 속성을 만듭니 MainMenu 다. 이 예제에서는 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

설명

이 속성을 사용하면 메뉴에서 오른쪽에서 왼쪽으로 쓰는 언어를 지원할 수 있습니다. 이 속성을 설정 RightToLeft.Yes하면 메뉴 항목 텍스트가 기본 왼쪽에서 오른쪽 메서드 대신 오른쪽에서 왼쪽으로 표시됩니다.

참고

오른쪽에서 왼쪽 맞춤을 사용 하도록 설정 하면 Windows Forms 컨트롤에 미치는 영향에 대 한 자세한 내용은 참조는 RightToLeft 속성입니다.

적용 대상

추가 정보