易景地球6.1.x后续的版本不再出32位的系统,只有64位版本的系统。
在c#开发中,form又如何将EviaEarth三维视窗控件放到上去呢?
有办法
以vs2019开发环境为例,新建工程后,添加引用文件:AxInterop.EviaEarthLib.dll、Interop.EviaEarthCommonlib.dll和Interop.EviaEarthlib.dll三个文件(这些文件可以在易景地球安装bin目录下可以找到)。
然后在Form类中定义变量:
public AxEviaEarthLib.AxEviaEarthControl axEviaEarthControl;
最后在Form构造函数InitializeComponent();后面添加代码:
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.axEviaEarthControl = new AxEviaEarthLib.AxEviaEarthControl();
((System.ComponentModel.ISupportInitialize)(this.axEviaEarthControl)).BeginInit();
this.SuspendLayout();
//
// axEviaEarthControl
//
this.axEviaEarthControl.AllowDrop = true;
this.axEviaEarthControl.Dock = System.Windows.Forms.DockStyle.Fill;
this.axEviaEarthControl.Enabled = true;
this.axEviaEarthControl.Location = new System.Drawing.Point(0, 0);
this.axEviaEarthControl.Name = “axEviaEarthControl”;
this.axEviaEarthControl.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject(“axEviaEarthControl.OcxState”)));
this.axEviaEarthControl.Size = new System.Drawing.Size(556, 423);
this.Controls.Add(this.axEviaEarthControl);
((System.ComponentModel.ISupportInitialize)(this.axEviaEarthControl)).EndInit();
this.ResumeLayout(false);
上图红框为新增代码。
然后将代码工程属性中的目标平台设置为x64,如下图所示
编译代码,运行就可以看到效果了