Ejemplo n.º 1
0
        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;
                }
        }
Ejemplo n.º 2
0
        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;
                }
        }
Ejemplo n.º 3
0
 private void updateStart_button_Click(object sender, RoutedEventArgs e)
 {
     using (_lock = new FocusLock(this))
         (App.ActiveWindow = new UpdateWindow(serverIp, updatePort, token, updateUri)).ShowDialog();
 }
Ejemplo n.º 4
0
 private void transactionStart_button_Click(object sender, RoutedEventArgs e)
 {
     using (_lock = new FocusLock(this))
         (App.ActiveWindow = new TransactionWindow(serverIp, transactionPort, token, transactionUri)).ShowDialog();
 }
Ejemplo n.º 5
0
		private void updateStart_button_Click(object sender, RoutedEventArgs e)
		{
			using (_lock = new FocusLock(this))
				(App.ActiveWindow = new UpdateWindow(serverIp, updatePort, token, updateUri)).ShowDialog();
		}
Ejemplo n.º 6
0
		private void transactionStart_button_Click(object sender, RoutedEventArgs e)
		{
			using (_lock = new FocusLock(this))
				(App.ActiveWindow = new TransactionWindow(serverIp, transactionPort, token, transactionUri)).ShowDialog();
		}
Ejemplo n.º 7
0
		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;
		}
Ejemplo n.º 8
0
		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;
		}