コード例 #1
0
        public static string[] QuickShowList(string TitleMessage = null, string Message = null, IWin32Window owner = null)
        {
            _InputBox ibx = new _InputBox();

            ibx.ShowList(owner, TitleMessage, Message);
            return(ibx.ListValue);
        }
コード例 #2
0
        public static string QuickShow(string TitleMessage, string Message, string[] StandardValues, IWin32Window owner = null)
        {
            _InputBox ibx = new _InputBox();

            ibx.Show(owner, TitleMessage, Message, StandardValues);
            return(ibx.Value);
        }
コード例 #3
0
        public static string QuickShow(string TitleMessage, string Message, AutoCompleteSource acs, IWin32Window owner = null)
        {
            _InputBox ibx = new _InputBox();

            ibx.Show(owner, TitleMessage, Message, acs);
            return(ibx.Value);
        }
コード例 #4
0
        public static string QuickShow(string TitleMessage = null, string Message = null, string DefaultResponse = null,
                                       IWin32Window owner  = null)
        {
            _InputBox ibx = new _InputBox();

            ibx.Show(owner, TitleMessage, Message, DefaultResponse);
            return(ibx.Value);
        }
コード例 #5
0
 /// <summary>
 /// Initialises a new InputBox Class and enables access to the hidden base class
 /// </summary>
 public InputBox()
 {
     _ibx = new _InputBox();
 }