Exemplo n.º 1
0
		/// <summary>
		/// Launch the Concorder dlg.
		/// </summary>
		/// <param name="argument">The xCore Command object.</param>
		/// <returns>true</returns>
		public bool OnViewConcorder(object argument)
		{
			CheckDisposed();

			// It is modeless, so we don't dispose it here.
			Concorder dlg = new Concorder();
			XWindow xwindow = m_mediator.PropertyTable.GetValue("window") as XWindow;
			dlg.SetDlgInfo(xwindow, m_configurationParameters);
			dlg.Show(xwindow);
			PruneDeadHandles();
			m_rghwnd.Add(dlg.Handle);

			return true;
		}
Exemplo n.º 2
0
        /// <summary>
        /// Launch the Concorder dlg.
        /// </summary>
        /// <param name="argument">The xCore Command object.</param>
        /// <returns>true</returns>
        public bool OnViewConcorder(object argument)
        {
            CheckDisposed();

            // It is modeless, so we don't dispose it here.
            Concorder dlg     = new Concorder();
            XWindow   xwindow = m_mediator.PropertyTable.GetValue("window") as XWindow;

            dlg.SetDlgInfo(xwindow, m_configurationParameters);
            dlg.Show(xwindow);
            PruneDeadHandles();
            m_rghwnd.Add(dlg.Handle);

            return(true);
        }