我正在尝试在基于C#窗体表单的项目中的用户控件中添加activeX控件。
现在,如果我从工具菜单中添加那个activeX组件,那么只需使用拖放即可使用activeX控件。
但是当我尝试在运行时使用C#代码添加那个时,它会抛出以下异常:
“类型异常 'System.Windows.Forms.AxHost = InvalidActiveXStateException'是 抛出”。
使用CreateControl()我能够摆脱这个异常,但现在activeX控件没有出现在窗体上。
答案 0 :(得分: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,但你明白了......
答案 1 :(得分:0)
好的,经过一些更改,代码看起来像这样。在运行时,会创建四个选项卡。最初,在第一个选项卡上显示控件。当用户点击其他标签页时,动态地在这些页面上添加了activex控件。 (此代码是为.net usercontrol编写的。在运行时,此用户控件将添加到表单中)
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