C# MessageBox.Show()

C# の MessageBox について色々試してみた.

ソースコードはこんな感じ.

string ss_message = “サンプル”;    // ss_message には一時的に使用.
MessageBox.Show(
ss_message,
“Title”,
MessageBoxButtons.OK,
MessageBoxIcon.Warning,
MessageBoxDefaultButton.Button1
);

MessageBoxButtons.○○○ の ○○○ の部分を変更して実行してみた.

MessageBoxButtons.○○○

AbortRetryIgnore  AbortRetryIgnore
OK  OK
OKCancel  OKCancel
RetryCancel  RetryCancel
YesNo  YesNo
YesNoCancel  YesNoCancel

 

MessageBoxIcon.○○○ の ○○○ の部分を変更して実行してみた.

MessageBoxIcon

Asterisk  Asterisk
Error  Error
Exclamation  Exclamation
Hand  Hand
Information  Information
None  None
Question  Question
Stop  Stop
Warning  Warning

違う設定なのに同じ表示になっている部分がある.何か他の設定が必要なのだろうか?

よくわからないが,とりあえず保留にしとく.

コメントする

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください