- 1、本文档共31页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C#调用 GoogleEarth COM API开发
1、主窗口代码:
1: // 功能:GE实例(二)
2: // 描述:GE COM API 网址:/comapi/index.html
3: // 作者:温伟鹏
4: // 日期:2009-02-08
5:
6: using System;
7: using System.Collections.Generic;
8: using System.ComponentModel;
9: using System.Data;
10: using System.Drawing;
11: using System.Text;
12: using System.Windows.Forms;
13: using EARTHLib;
14:
15: namespace GEDemo
16: {
17: public partial class Form2 : Form
18: {
19: /// summary
20: /// 用来关闭GoogleEarth的消息定义
21: /// /summary
22: static readonly Int32 WM_QUIT = 0x0012;
23:
24: private IntPtr GEHWnd = (IntPtr)5;
25: private IntPtr GEHrender = (IntPtr)5;
26: private IntPtr GEParentHrender = (IntPtr)5;
27: /// summary
28: /// 定义GE应用程序类
29: /// /summary
30: private ApplicationGEClass GeApp;
31:
32: public Form2()
33: {
34: InitializeComponent();
35: }
36:
37: protected override void OnLoad(EventArgs e)
38: {
39: base.OnLoad(e);
40:
41: if (!this.DesignMode)
42: {
43: GeApp = new ApplicationGEClass();
44:
45: GEHWnd = (IntPtr)GeApp.GetMainHwnd();
46:
47: NativeMethods.SetWindowPos(GEHWnd, NativeMethods.HWND_BOTTOM, 0, 0, 0, 0,
48: NativeMethods.SWP_NOSIZE + NativeMethods.SWP_HIDEWINDOW);
49:
50: GEHrender = (IntPtr)GeApp.GetRenderHwnd();
51: GEParentHrender = (IntPtr)NativeMethods.GetParent(GEHrender);
52:
53: NativeMethods.MoveWindow(GEHrender, 0, 0, this.Width, this.Height, true);
54:
55: NativeMethods.SetParent(GEHrender, this.Handle);
56: }
57: }
58:
59: protected override void OnClosing(CancelEventArgs e)
60: {
61: base.OnClosing(e);
62:
63: NativeMethods.PostMessage(GeApp.GetMainHwnd(), WM_QUIT, 0, 0);
64: }
65: }
66: }
2、NativeMethods类定义:
1: // 功能:Windows API调用
2: // 描述:大家可以参照MSDN
3: // 作者:温伟鹏
4: // 日期:2009-02-08
5:
文档评论(0)