Exemple #1
0
        private void databaseSchemaToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form childForm = new DbSchemaForm
            {
                MdiParent = this
            };

            childForm.Show();
        }
Exemple #2
0
        private void openStructureButton_Click(object sender, EventArgs e)
        {
            if (_schema == null)
            {
                return;
            }
            Form childForm = new DbSchemaForm(_schema, _agent.CurrentDatabase)
            {
                MdiParent = this.MdiParent
            };

            childForm.Show();
        }