Esempio n. 1
0
        public StartPage()
        {
            InitializeComponent();
            db        = new data();
            commander = new command();
            settings sett = new settings(db.read());

            txtSSID.Text       = sett.SSID;
            txtKey.Text        = sett.Key;
            ckbShowKey.Checked = sett.PassChar;
        }
Esempio n. 2
0
 public data()
 {
     content   = new String[3];
     commander = new command();
 }