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); } }
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); } }