Example #1
0
 public LoginForm(EDAPI edapi)
 {
     InitializeComponent();
     this.edapi = edapi;
     toolStripStatusLabel1.Text = "Enter your Frontier credentials and press Login";
     passwordTextBox.UseSystemPasswordChar = true;
 }
Example #2
0
 public ReportForm()
 {
     InitializeComponent();
     edapi = new EDAPI();
     takenMisisonCoolDown = new TimeSpan(0, 0, Properties.Settings.Default.MissionCoolDown);
     if (string.IsNullOrEmpty(Properties.Settings.Default.PicturesFolder) || !Directory.Exists(Properties.Settings.Default.PicturesFolder))
     {
         Properties.Settings.Default.PicturesFolder = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures) + @"\Frontier Developments\Elite Dangerous";
         Properties.Settings.Default.Save();
     }
     Properties.Settings.Default.SettingsSaving += onSettingsChanged;
     callback = new AnalyzeScreenShotCallback(analyzeScreenShot);
 }
Example #3
0
 public SettingsForm(EDAPI edapi)
 {
     InitializeComponent();
     this.edapi = edapi;
 }