MessageBoxOptions를 지정하십시오.
업데이트: 2007년 11월
TypeName |
SpecifyMessageBoxOptions |
CheckId |
CA1300 |
범주 |
Microsoft.Globalization |
변경 수준 |
주요 변경 아님 |
원인
메서드가 System.Windows.Forms.MessageBoxOptions 인수를 사용하지 않는 MessageBox.Show 메서드의 오버로드를 호출합니다.
규칙 설명
오른쪽에서 왼쪽으로 읽기 순서를 사용하는 문화권에 대해 메시지 상자를 올바로 표시하려면 MessageBoxOptions 열거형의 RightAlign 및 RtlReading 멤버를 Show 메서드로 전달해야 합니다. 오른쪽에서 왼쪽으로 읽기 순서를 사용할지 여부를 결정하려면 포함하는 컨트롤의 Control.RightToLeft 속성을 검사하십시오.
위반 문제를 해결하는 방법
이 규칙 위반 문제를 해결하려면 MessageBoxOptions 인수를 사용하는 Show 메서드의 오버로드를 호출합니다.
경고를 표시하지 않는 경우
오른쪽에서 왼쪽으로 읽기 순서를 사용하는 문화권에 대해 코드 라이브러리가 지역화되지 않을 경우에는 이 규칙에서 경고를 표시하지 않아도 안전합니다.
예제
다음 예제에서는 문화권의 읽기 순서에 적합한 옵션을 사용하여 메시지 상자를 표시하는 메서드를 보여 줍니다. 예제를 빌드하려면 리소스 파일이 필요합니다. 리소스 파일은 표시되지 않습니다. 예제에 있는 주석을 따라 리소스 파일 없이 예제를 빌드하고 오른쪽에서 왼쪽 기능을 테스트합니다.
Imports System
Imports System.Globalization
Imports System.Resources
Imports System.Windows.Forms
Namespace GlobalizationLibrary
Class Program
<STAThread()> _
Shared Sub Main()
Dim myForm As New SomeForm()
' Uncomment the following line to test the right to left feature.
' myForm.RightToLeft = RightToLeft.Yes
Application.Run(myForm)
End Sub
End Class
Public Class SomeForm : Inherits Form
Private _Resources As ResourceManager
Private WithEvents _Button As Button
Public Sub New()
_Resources = New ResourceManager(GetType(SomeForm))
_Button = New Button()
Controls.Add(_Button)
End Sub
Private Sub Button_Click(ByVal sender As Object, ByVal e As EventArgs) Handles _Button.Click
' Switch the commenting on the following 4 lines to test the form.
'Dim text As String = "Text"
'Dim caption As String = "Caption"
Dim text As String = _Resources.GetString("messageBox.Text")
Dim caption As String = _Resources.GetString("messageBox.Caption")
RtlAwareMessageBox.Show(CType(sender, Control), text, caption, _
MessageBoxButtons.OK, MessageBoxIcon.Information, _
MessageBoxDefaultButton.Button1, CType(0, MessageBoxOptions))
End Sub
End Class
Public Module RtlAwareMessageBox
Public Function Show(ByVal owner As IWin32Window, ByVal text As String, ByVal caption As String, ByVal buttons As MessageBoxButtons, ByVal icon As MessageBoxIcon, ByVal defaultButton As MessageBoxDefaultButton, ByVal options As MessageBoxOptions) As DialogResult
If (IsRightToLeft(owner)) Then
options = options Or MessageBoxOptions.RtlReading Or _
MessageBoxOptions.RightAlign
End If
Return MessageBox.Show(owner, text, caption, _
buttons, icon, defaultButton, options)
End Function
Private Function IsRightToLeft(ByVal owner As IWin32Window) As Boolean
Dim control As Control = TryCast(owner, Control)
If (control IsNot Nothing) Then
Return control.RightToLeft = RightToLeft.Yes
End If
' If no parent control is available, ask the CurrentUICulture
' if we are running under right-to-left.
Return CultureInfo.CurrentUICulture.TextInfo.IsRightToLeft
End Function
End Module
End Namespace
using System;
using System.Globalization;
using System.Resources;
using System.Windows.Forms;
namespace GlobalizationLibrary
{
class Program
{
[STAThread]
static void Main()
{
SomeForm myForm = new SomeForm();
// Uncomment the following line to test the right-to-left feature.
//myForm.RightToLeft = RightToLeft.Yes;
Application.Run(myForm);
}
}
public class SomeForm : Form
{
private ResourceManager _Resources;
private Button _Button;
public SomeForm()
{
_Resources = new ResourceManager(typeof(SomeForm));
_Button = new Button();
_Button.Click += new EventHandler(Button_Click);
Controls.Add(_Button);
}
private void Button_Click(object sender, EventArgs e)
{
// Switch the commenting on the following 4 lines to test the form.
// string text = "Text";
// string caption = "Caption";
string text = _Resources.GetString("messageBox.Text");
string caption = _Resources.GetString("messageBox.Caption");
RtlAwareMessageBox.Show((Control)sender, text, caption,
MessageBoxButtons.OK, MessageBoxIcon.Information,
MessageBoxDefaultButton.Button1, (MessageBoxOptions)0);
}
}
public static class RtlAwareMessageBox
{
public static DialogResult Show(IWin32Window owner, string text, string caption, MessageBoxButtons buttons, MessageBoxIcon icon, MessageBoxDefaultButton defaultButton, MessageBoxOptions options)
{
if (IsRightToLeft(owner))
{
options |= MessageBoxOptions.RtlReading |
MessageBoxOptions.RightAlign;
}
return MessageBox.Show(owner, text, caption,
buttons, icon, defaultButton, options);
}
private static bool IsRightToLeft(IWin32Window owner)
{
Control control = owner as Control;
if (control != null)
{
return control.RightToLeft == RightToLeft.Yes;
}
// If no parent control is available, ask the CurrentUICulture
// if we are running under right-to-left.
return CultureInfo.CurrentUICulture.TextInfo.IsRightToLeft;
}
}
}