コード例 #1
0
ファイル: App.xaml.cs プロジェクト: gomckenz/rpm-google-docs
 public void showSetupWindow(bool forceShow = false)
 {
     if (!this.settingsAreComplete() || forceShow)
     {
         SetupWindow w = new SetupWindow(
             this.OAuthAccessCode,
             this.RpmApiUrl, this.rpmApiKey,
             this.googleClientId,
             this.googleClientSecret
             );
         w.SetupOptionChanged += this.SaveSetupOption;
         w.ShowDialog();
     }
 }
コード例 #2
0
ファイル: App.xaml.cs プロジェクト: gomckenz/rpm-google-docs
 public void showSetupWindow(bool forceShow = false)
 {
     if (!this.settingsAreComplete() || forceShow)
     {
         SetupWindow w = new SetupWindow(
             this.OAuthAccessCode,
             this.RpmApiUrl, this.rpmApiKey,
             this.googleClientId,
             this.googleClientSecret
         );
         w.SetupOptionChanged += this.SaveSetupOption;
         w.ShowDialog();
     }
 }