예제 #1
0
파일: Account.xaml.cs 프로젝트: mgway/rhel
 public Account(MainWindow main)
 {
     InitializeComponent();
     this.main         = main;
     this.charIDs      = new List <int>();
     this.settingsPath = String.Format("{0}\\{1}", main.localAppPath(), "settings");
 }
예제 #2
0
 public Account(MainWindow main)
 {
     InitializeComponent();
     this.main = main;
     this.charIDs = new List<int>();
     this.settingsPath = String.Format("{0}\\{1}", main.localAppPath(), "settings");
 }
예제 #3
0
 public uiWindow(MainWindow main)
 {
     InitializeComponent();
     this.main = main;
     this.settingsPath = String.Format("{0}\\{1}", main.localAppPath(), "settings");
     this.charIDs = this.getIDs();
     this.popListFromFile();
     this.popListFromSettings();
     this.saveaccounts = true;
 }
예제 #4
0
파일: UIWindow.xaml.cs 프로젝트: mgway/rhel
 public uiWindow(MainWindow main)
 {
     InitializeComponent();
     this.main         = main;
     this.settingsPath = String.Format("{0}\\{1}", main.localAppPath(), "settings");
     this.charIDs      = this.getIDs();
     this.popListFromFile();
     this.popListFromSettings();
     this.saveaccounts = true;
 }