コード例 #1
0
ファイル: MainForm.cs プロジェクト: Laeng/StarCitizen_maro
 private void btnLocalization_Click(object sender, EventArgs e)
 {
     if (Program.CurrentGame != null)
     {
         using var dlg = new LocalizationForm(Program.CurrentGame);
         dlg.ShowDialog(this);
         SetGameFolder(Program.Settings.GameFolder);
     }
 }
コード例 #2
0
        private void btnLocalization_Click(object sender, EventArgs e)
        {
            if (Program.CurrentGame == null)
            {
                return;
            }

            using var dlg = new LocalizationForm(Program.CurrentGame);
            dlg.ShowDialog(this);
        }