Esempio n. 1
0
        /// <summary>
        /// Shows the plugin's main form.
        /// </summary>
        public void ShowForm()
        {
            if (m_myStrategyForm == null)
            {
                m_myStrategyForm = new MyStrategyForm();
            }

            if (m_myStrategyForm.IsDisposed)
            {
                m_myStrategyForm = new MyStrategyForm();
            }

            m_myStrategyForm.Show();
        }
Esempio n. 2
0
        /// <summary>
        /// Shows the plugin's main form.
        /// </summary>
        public void ShowForm()
        {
            if (m_myStrategyForm == null)
                m_myStrategyForm = new MyStrategyForm();

            if(m_myStrategyForm.IsDisposed)
                m_myStrategyForm = new MyStrategyForm();

            m_myStrategyForm.Show();
        }