private void m_testPropertiesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            TestPropertiesGlobalEditor editor = new TestPropertiesGlobalEditor();

            editor.FormClosed += Editor_FormClosed;
            editor.Show(this);
            m_testPropertiesToolStripMenuItem.Enabled = false;
        }
示例#2
0
 private void m_testPropertiesToolStripMenuItem_Click(object sender, EventArgs e)
 {
     m_testPropertiesGlobalEditor             = new TestPropertiesGlobalEditor(_testPropertyOverrides);
     m_testPropertiesGlobalEditor.FormClosed += Editor_FormClosed;
     m_testPropertiesGlobalEditor.Location    =
         new Point(Location.X + Width / 2, Location.Y);
     m_testPropertiesGlobalEditor.StartPosition = FormStartPosition.Manual;
     m_testPropertiesGlobalEditor.Show(this);
     m_testPropertiesToolStripMenuItem.Enabled = false;
 }