Beispiel #1
0
        /// <summary>Retrieve data from storage to edit and save</summary>
        /// <param name="parent">The parent window</param>
        /// <param name="index">The data item index object</param>
        public static bool ShowBox(Window parent, IIndexItem <DefaultFileExtraInfo> index)
        {
            MsgBoxWifiCred box = new MsgBoxWifiCred(parent, index);

            box.processType = ProcessType.Edit;
            box.ShowDialog();
            return(box.Result.IsChanged);
        }
Beispiel #2
0
        public static bool ShowBox(Window parent)
        {
            MsgBoxWifiCred box = new MsgBoxWifiCred(parent);

            box.processType = ProcessType.Create;
            box.ShowDialog();
            return(box.Result.IsChanged);
        }
Beispiel #3
0
        /// <summary>
        /// Get user data when using credentials for first time. Will not
        /// be save unless the connection is successful
        /// </summary>
        /// <param name="win">Parent window</param>
        /// <param name="ssid">SSID as the box title</param>
        /// <param name="host">Network host name or IP address</param>
        /// <param name="service">Network port</param>
        /// <returns></returns>
        public static WifiCredResult ShowBox(Window win, string ssid, string host, string service)
        {
            MsgBoxWifiCred box = new MsgBoxWifiCred(win, ssid, host, service);

            box.processType = ProcessType.Init;
            box.ShowDialog();
            return(box.Result);
        }