예제 #1
0
파일: Notifier.cs 프로젝트: anaimi/farawla
        public static void Prompt(string description, string detail, string input, int highlight, OnPromptEvent action)
        {
            var prompt = new ModalInputBox(description, detail, input, highlight, action);

            prompt.ShowDialog();
        }
예제 #2
0
파일: Notifier.cs 프로젝트: anaimi/farawla
 public static void Prompt(string description, string detail, string input, OnPromptEvent action)
 {
     Prompt(description, detail, input, -1, action);
 }