예제 #1
0
        public MainWindow()
        {
            InitializeComponent();

            ComboBoxFormat.Text = "TEXT";

            if ((string)Properties.Settings.Default["VisionApiKey"] == string.Empty || (string)Properties.Settings.Default["TextAnalyticsApiKey"] == string.Empty)
            {
                settingWindow = new SettingWindow();
                settingWindow.ShowDialog();
            }
        }
예제 #2
0
 private void MenuItemSetting_Click(object sender, RoutedEventArgs e)
 {
     settingWindow = new SettingWindow();
     settingWindow.ShowDialog();
 }