Пример #1
0
 private void HandlePersistentResponse(object sender, EditorResponseEventArgs e)
 {
     if (_infoBox != null)
     {
         _infoBox.Close();
         _infoBox = null;
     }
     _infoBox = new PersistentInformation(e.ResponseString);
     _infoBox.StartPosition = FormStartPosition.CenterParent;
     _infoBox.Show();
 }