Show / Hide Table of Contents

Class MessageDialogActionParameter

MessageDialogAction へ渡すパラメーター。 IsDialog が false のときには Button の設定は反映されません。

Inheritance
System.Object
MessageDialogActionParameter
Implements
IMessageDialogActionParameter
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: MakCraft.Behaviors
Assembly: MakViewModelBaseCore.dll
Syntax
public class MessageDialogActionParameter : IMessageDialogActionParameter

Constructors

| Improve this Doc View Source

MessageDialogActionParameter(String, String)

MessageDialogAction へ渡すパラメーター(メッセージ表示用)。 ボタン表示は OK のみ。

Declaration
public MessageDialogActionParameter(string message, string caption)
Parameters
Type Name Description
System.String message
System.String caption
| Improve this Doc View Source

MessageDialogActionParameter(String, String, MessageBoxButton)

MessageDialogAction へ渡すパラメーター(ダイアログ表示用)。

Declaration
public MessageDialogActionParameter(string message, string caption, MessageBoxButton button)
Parameters
Type Name Description
System.String message
System.String caption
System.Windows.MessageBoxButton button
| Improve this Doc View Source

MessageDialogActionParameter(String, String, MessageBoxButton, Boolean)

MessageDialogAction へ渡すパラメーター。

Declaration
public MessageDialogActionParameter(string message, string caption, MessageBoxButton button, bool isDialog)
Parameters
Type Name Description
System.String message
System.String caption
System.Windows.MessageBoxButton button
System.Boolean isDialog

Properties

| Improve this Doc View Source

Button

MessageBox に表示するボタン。

Declaration
public MessageBoxButton Button { get; protected set; }
Property Value
Type Description
System.Windows.MessageBoxButton
| Improve this Doc View Source

Caption

MessageBox に表示するタイトル。

Declaration
public string Caption { get; protected set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

IsDialog

表示するウィンドウの種別を取得します。 true:ダイアログ(ユーザ応答を処理する)、false:メッセージ。

Declaration
public bool IsDialog { get; protected set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Message

MessageBoxに表示するメッセージ。

Declaration
public string Message { get; protected set; }
Property Value
Type Description
System.String

Implements

IMessageDialogActionParameter
  • Improve this Doc
  • View Source
Back to top Generated by DocFX