AGS.Editor.GUIController.ShowQuestion C# (CSharp) Метод

ShowQuestion() публичный Метод

public ShowQuestion ( string message, MessageBoxIcon icon ) : DialogResult
message string
icon MessageBoxIcon
Результат DialogResult
        public DialogResult ShowQuestion(string message, MessageBoxIcon icon)
        {
            return MessageBox.Show(message, "Adventure Game Studio", MessageBoxButtons.YesNo, icon);
        }

Same methods

GUIController::ShowQuestion ( string message ) : DialogResult
GUIController