5

这是一个愚蠢的问题,但我找不到答案:

我正在使用消息框以希伯来语显示文本,并且我需要 RTLReading 和 RightAlign。

我目前正在使用:

MessageBox.Show(msg, title, MessageBoxButtons.OK, MessageBoxIcon.Information, MessageBoxDefaultButton.Button1, MessageBoxOptions.RtlReading);

如何添加 MessageBoxOptions.RightAlign?

4

2 回答 2

14

或它们在一起:MessageBoxOptions.RtlReading | MessageBoxOptions.RightAlign

于 2011-04-23T23:50:46.473 回答
7

使用 OR 运算符:

MessageBoxOptions.RtlReading | MessageBoxOptions.RightAlign
于 2011-04-23T23:50:30.543 回答