private void ManagedTypeSelectButton_Click(object sender, EventArgs e)
 {
     AssemblyTypeSelectDialog dlg = new AssemblyTypeSelectDialog();
     if (dlg.ShowDialog() == DialogResult.OK)
     {
         m_textBox.Text = dlg.SelectedType.FullName;
     }
 }
 private void buttonManagedTypeSelector_Click(object sender, EventArgs e)
 {
     AssemblyTypeSelectDialog dlg = new AssemblyTypeSelectDialog();
     if (dlg.ShowDialog() == DialogResult.OK)
     {
         this.textBoxMangedAssembly.Text = dlg.SelectedType.Assembly.GetName().Name;
         this.textBoxManagedTypeFullName.Text = dlg.SelectedType.FullName;
     }
 }
        private void ManagedTypeSelectButton_Click(object sender, EventArgs e)
        {
            AssemblyTypeSelectDialog dlg = new AssemblyTypeSelectDialog();

            if (dlg.ShowDialog() == DialogResult.OK)
            {
                m_textBox.Text = dlg.SelectedType.FullName;
            }
        }
        private void buttonManagedTypeSelector_Click(object sender, EventArgs e)
        {
            AssemblyTypeSelectDialog dlg = new AssemblyTypeSelectDialog();

            if (dlg.ShowDialog() == DialogResult.OK)
            {
                this.textBoxMangedAssembly.Text      = dlg.SelectedType.Assembly.GetName().Name;
                this.textBoxManagedTypeFullName.Text = dlg.SelectedType.FullName;
            }
        }
示例#5
0
        private void buttonTypeSelector_Click(object sender, EventArgs e)
        {
            AssemblyTypeSelectDialog dlg = new AssemblyTypeSelectDialog();

            if (dlg.ShowDialog() == DialogResult.OK)
            {
                this.m_selectedAttributeType = dlg.SelectedType;
                this.textBoxAssembly.Text    = dlg.SelectedType.Assembly.GetName().Name;
                this.textBoxType.Text        = dlg.SelectedType.FullName;
                UpdateConstructors();
            }
        }
 private void buttonTypeSelector_Click(object sender, EventArgs e)
 {
     AssemblyTypeSelectDialog dlg = new AssemblyTypeSelectDialog();
     if (dlg.ShowDialog() == DialogResult.OK)
     {
         this.m_selectedAttributeType = dlg.SelectedType;
         this.textBoxAssembly.Text = dlg.SelectedType.Assembly.GetName().Name;
         this.textBoxType.Text = dlg.SelectedType.FullName;
         UpdateConstructors();
     }
 }