Exemplo n.º 1
0
        /// <summary>
        /// Displays a dialogue to the user, allowing them to create a new queue.
        /// </summary>
        public void CreateQueue()
        {
            NewQueueForm newQueueForm = new NewQueueForm();

            newQueueForm.ShowDialog(_primaryForms.EnvironmentForm);
            newQueueForm.Dispose();
        }
Exemplo n.º 2
0
		/// <summary>
		/// Displays a dialogue to the user, allowing them to create a new queue.
		/// </summary>
		public void CreateQueue()
		{
			NewQueueForm newQueueForm = new NewQueueForm();
			newQueueForm.ShowDialog(_primaryForms.EnvironmentForm);
			newQueueForm.Dispose();
		}