4

我正在尝试在基于 C# windows 窗体的项目的用户控件中添加一个 activeX 控件。

现在,如果我从工具菜单中添加该 activeX 组件,那么只需使用拖放操作,我就可以使用 activeX 控件。
但是,当我尝试在运行时使用 C# 代码添加该代码时,它会引发以下异常:

“引发了‘System.Windows.Forms.AxHost=InvalidActiveXStateException’类型的异常”。

使用 CreateControl() 我能够摆脱这个异常,但现在 activeX 控件没有出现在表单上。

4

2 回答 2

2

您何时添加控件以及其添加到表单的什么位置?

您通常会在组件初始化后在构造函数中加载控件:

    public FormRecalculation()
    {
        InitializeComponent();
        loadDataSelector();
    }

如果有任何关联的许可证密钥,您需要设置它们并将它们添加到表单上的相应容器中:

        private void loadDataSelector()
    {
        //Initialize the DataSelector
        DataSelector = new AXQDataSelector(getClsidFromProgId("QDataSelLib.QDataSel"));
        if (DataSelector != null)
        {
            System.Reflection.FieldInfo f =
                typeof(AxHost).GetField("licenseKey",
                System.Reflection.BindingFlags.NonPublic |
                System.Reflection.BindingFlags.Instance);
            f.SetValue(DataSelector, "license-here");

            splitContainer1.Panel2.Controls.Add(DataSelector);

            ((System.ComponentModel.ISupportInitialize)(DataSelector)).BeginInit();

            this.DataSelector.Dock = System.Windows.Forms.DockStyle.Fill;
            this.DataSelector.Enabled = true;
            this.DataSelector.Location = new System.Drawing.Point(0, 0);
            this.DataSelector.Name = "DataSelector";
            this.DataSelector.Size = new System.Drawing.Size(324, 773);
            this.DataSelector.TabIndex = 0;

            splitContainer1.Panel2.ResumeLayout();
            ((System.ComponentModel.ISupportInitialize)(DataSelector)).EndInit();

            this.ResumeLayout(false);
            this.PerformLayout();
        }
        else
        {
            return;
        }

    }

这实际上是用于包装的 OCX,但你明白了......

于 2012-09-13T15:41:02.037 回答
0

好的,经过一些更改后,代码如下所示。这里在运行时创建了四个选项卡。最初,在第一个选项卡上显示控件。当用户单击其他选项卡页面时,这些页面上动态添加的 activex 控件。(此代码是为 .net 用户控件编写的。在运行时,此用户控件被添加到表单中)

   private void Populate()
    {
        int position;
        int i = 0;

        //here children in list of string type
        foreach (string child in children)
        {
            this.productLineTabs.TabPages.Add(child);
            AxSftTree treeadd = loadtree(this.productLineTabs.TabPages[i]);
            this.tree.Add(treeadd);

            this.tree[i].Columns = 2;
            this.tree[i].set_ColumnText(0, "Col1");
            this.tree[i].set_ColumnText(1, "Col2");

            position = this.tree[i].AddItem(child);
            i++;
        }

        form plv = new form();
        plv.Controls.Add(this);
        plv.Show();
    }

    private AxSftTree loadtree(TabPage tab)
    {
        AxSftTree treeobject = new AxSftTree();
        ((System.ComponentModel.ISupportInitialize)(treeobject)).BeginInit();
        SuspendLayout();
        tab.Controls.Add(treeobject);
        treeobject.Dock = DockStyle.Fill;
        ResumeLayout();
        ((System.ComponentModel.ISupportInitialize)(treeobject)).EndInit();

        return treeobject;
    }

您可以在此页面上找到有关此实现的一些详细信息:http: //newapputil.blogspot.in/2013/11/how-to-add-activex-control-at-run-time.html

于 2012-09-14T03:12:59.377 回答