Beispiel #1
0
        void OnNewBuffer(object sender, EventArgs e)
        {
            string          serviceNamespace = m_NamespaceTextBox.Text;
            NewBufferDialog dialog           = new NewBufferDialog(serviceNamespace);

            dialog.ShowDialog();

            if (dialog.Client != null)
            {
                OnExplore(this, EventArgs.Empty);
            }
        }
Beispiel #2
0
      void OnNewBuffer(object sender,EventArgs e)
      {
         string serviceNamespace = m_NamespaceTextBox.Text;
         NewBufferDialog dialog = new NewBufferDialog(serviceNamespace);
         dialog.ShowDialog();

         if(dialog.Client != null)
         {
            OnExplore(this,EventArgs.Empty);
         }
      }