コード例 #1
0
ファイル: MainWindow.xaml.cs プロジェクト: newyrose/CTRSystem
        private void editUpdateUri_button_Click(object sender, RoutedEventArgs e)
        {
            var edit = new UpdateEditor(updateUri);

            using (_lock = new FocusLock(this))
                if ((App.ActiveWindow = edit).ShowDialog() == true)
                {
                    updateUri = edit.SetUrl;
                }
        }
コード例 #2
0
ファイル: MainWindow.xaml.cs プロジェクト: newyrose/CTRSystem
        private void editToken_button_Click(object sender, RoutedEventArgs e)
        {
            var edit = new TokenEditor(token);

            using (_lock = new FocusLock(this))
                if ((App.ActiveWindow = edit).ShowDialog() == true)
                {
                    token = edit.SetToken;
                }
        }
コード例 #3
0
ファイル: MainWindow.xaml.cs プロジェクト: newyrose/CTRSystem
 private void updateStart_button_Click(object sender, RoutedEventArgs e)
 {
     using (_lock = new FocusLock(this))
         (App.ActiveWindow = new UpdateWindow(serverIp, updatePort, token, updateUri)).ShowDialog();
 }
コード例 #4
0
ファイル: MainWindow.xaml.cs プロジェクト: newyrose/CTRSystem
 private void transactionStart_button_Click(object sender, RoutedEventArgs e)
 {
     using (_lock = new FocusLock(this))
         (App.ActiveWindow = new TransactionWindow(serverIp, transactionPort, token, transactionUri)).ShowDialog();
 }
コード例 #5
0
ファイル: MainWindow.xaml.cs プロジェクト: Enerdy/CTRSystem
		private void updateStart_button_Click(object sender, RoutedEventArgs e)
		{
			using (_lock = new FocusLock(this))
				(App.ActiveWindow = new UpdateWindow(serverIp, updatePort, token, updateUri)).ShowDialog();
		}
コード例 #6
0
ファイル: MainWindow.xaml.cs プロジェクト: Enerdy/CTRSystem
		private void transactionStart_button_Click(object sender, RoutedEventArgs e)
		{
			using (_lock = new FocusLock(this))
				(App.ActiveWindow = new TransactionWindow(serverIp, transactionPort, token, transactionUri)).ShowDialog();
		}
コード例 #7
0
ファイル: MainWindow.xaml.cs プロジェクト: Enerdy/CTRSystem
		private void editUpdateUri_button_Click(object sender, RoutedEventArgs e)
		{
			var edit = new UpdateEditor(updateUri);
			using (_lock = new FocusLock(this))
				if ((App.ActiveWindow = edit).ShowDialog() == true)
					updateUri = edit.SetUrl;
		}
コード例 #8
0
ファイル: MainWindow.xaml.cs プロジェクト: Enerdy/CTRSystem
		private void editToken_button_Click(object sender, RoutedEventArgs e)
		{
			var edit = new TokenEditor(token);
			using (_lock = new FocusLock(this))
				if ((App.ActiveWindow = edit).ShowDialog() == true)
					token = edit.SetToken;
		}