当前位置:  编程技术>.net/c#/asp.net

C#+MO实现一些渲染功能

    来源: 互联网  发布时间:2014-10-13

    本文导语:  using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace DbInMo {      ///       /// Form1 的摘要说明。      ///       public class 渲染示例 : System.Windows.For...

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace DbInMo
{
     /// 
     /// Form1 的摘要说明。
     /// 
     public class 渲染示例 : System.Windows.Forms.Form
     {
          private AxMapObjects2.AxMap map;
          private System.Windows.Forms.Button 直方图;
          private System.Windows.Forms.Button 饼图;
          private System.Windows.Forms.Button 点密度;
          private System.Windows.Forms.Button 按值渲染;
          private System.Windows.Forms.Button 分类渲染;
          private System.Windows.Forms.Button Z值渲染;
          private System.Windows.Forms.Button 组渲染;
          private System.Windows.Forms.Button 退出;
          private System.Windows.Forms.Panel 操作板;
          private System.Windows.Forms.Button 删除所有渲染;
          private System.Windows.Forms.Panel panel1;
          private System.Windows.Forms.Button 全图;
          private System.Windows.Forms.Button 拖动;
          private System.Windows.Forms.Button 缩小;
          private System.Windows.Forms.Button 放大;
          private System.Windows.Forms.Panel 分隔符;
          private System.Windows.Forms.Button 标注渲染;
         /// 
         /// 必需的设计器变量。
         /// 
          private System.ComponentModel.Container components = null;
         public 渲染示例()
         {
              //
              // Windows 窗体设计器支持所必需的
              //
              InitializeComponent();
              //
              // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
              //
         }
         /// 
         /// 清理所有正在使用的资源。
         /// 
          protected override void Dispose( bool disposing )
         {
              if( disposing )
              {
                   if (components != null) 
                   {
                        components.Dispose();
                   }
              }
              base.Dispose( disposing );
         }
          #region Windows 窗体设计器生成的代码
         /// 
         /// 设计器支持所需的方法 - 不要使用代码编辑器修改
         /// 此方法的内容。
         /// 
          private void InitializeComponent()
         {
              System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(渲染示例));
              this.map = new AxMapObjects2.AxMap();
              this.操作板 = new System.Windows.Forms.Panel();
              this.直方图 = new System.Windows.Forms.Button();
              this.饼图 = new System.Windows.Forms.Button();
              this.点密度 = new System.Windows.Forms.Button();
              this.按值渲染 = new System.Windows.Forms.Button();
              this.分类渲染 = new System.Windows.Forms.Button();
              this.Z值渲染 = new System.Windows.Forms.Button();
              this.组渲染 = new System.Windows.Forms.Button();
              this.退出 = new System.Windows.Forms.Button();
              this.标注渲染 = new System.Windows.Forms.Button();
              this.删除所有渲染 = new System.Windows.Forms.Button();
              this.panel1 = new System.Windows.Forms.Panel();
              this.全图 = new System.Windows.Forms.Button();
              this.拖动 = new System.Windows.Forms.Button();
              this.缩小 = new System.Windows.Forms.Button();
              this.放大 = new System.Windows.Forms.Button();
              this.分隔符 = new System.Windows.Forms.Panel();
              ((System.ComponentModel.ISupportInitialize)(this.map)).BeginInit();
              this.操作板.SuspendLayout();
              this.SuspendLayout();
              // 
              // map
              // 
              this.map.Dock = System.Windows.Forms.DockStyle.Fill;
              this.map.Location = new System.Drawing.Point(0, 0);
              this.map.Name = "map";
              this.map.OcxState = ((System.Windows.Forms.AxHost.State)(resources.GetObject("map.OcxState")));
              this.map.Size = new System.Drawing.Size(616, 429);
              this.map.TabIndex = 0;
              this.map.MouseDownEvent += new AxMapObjects2._DMapEvents_MouseDownEventHandler(this.map_MouseDownEvent);
              // 
              // 操作板
              // 
              this.操作板.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
              this.操作板.Controls.Add(this.删除所有渲染);
              this.操作板.Controls.Add(this.panel1);
              this.操作板.Controls.Add(this.全图);
              this.操作板.Controls.Add(this.拖动);
              this.操作板.Controls.Add(this.缩小);
              this.操作板.Controls.Add(this.放大);
              this.操作板.Controls.Add(this.分隔符);
              this.操作板.Controls.Add(this.标注渲染);
              this.操作板.Controls.Add(this.退出);
              this.操作板.Controls.Add(this.组渲染);
              this.操作板.Controls.Add(this.Z值渲染);
              this.操作板.Controls.Add(this.分类渲染);
              this.操作板.Controls.Add(this.按值渲染);
              this.操作板.Controls.Add(this.点密度);
              this.操作板.Controls.Add(this.饼图);
              this.操作板.Controls.Add(this.直方图);
              this.操作板.Dock = System.Windows.Forms.DockStyle.Right;
              this.操作板.Location = new System.Drawing.Point(496, 0);
              this.操作板.Name = "操作板";
              this.操作板.Size = new System.Drawing.Size(120, 429);
              this.操作板.TabIndex = 1;
              // 
              // 直方图
              // 
              this.直方图.Dock = System.Windows.Forms.DockStyle.Top;
              this.直方图.Location = new System.Drawing.Point(0, 0);
              this.直方图.Name = "直方图";
              this.直方图.Size = new System.Drawing.Size(116, 24);
              this.直方图.TabIndex = 0;
              this.直方图.Text = "直方图";
              this.直方图.Click += new System.EventHandler(this.直方图_Click);
              // 
              // 饼图
              // 
              this.饼图.Dock = System.Windows.Forms.DockStyle.Top;
              this.饼图.Location = new System.Drawing.Point(0, 24);
              this.饼图.Name = "饼图";
              this.饼图.Size = new System.Drawing.Size(116, 24);
              this.饼图.TabIndex = 1;
              this.饼图.Text = "饼图";
              this.饼图.Click += new System.EventHandler(this.饼图_Click);
              // 
              // 点密度
              // 
              this.点密度.Dock = System.Windows.Forms.DockStyle.Top;
              this.点密度.Location = new System.Drawing.Point(0, 48);
              this.点密度.Name = "点密度";
              this.点密度.Size = new System.Drawing.Size(116, 23);
              this.点密度.TabIndex = 2;
              this.点密度.Text = "点密度";
              this.点密度.Click += new System.EventHandler(this.点密度_Click);
              // 
              // 按值渲染
              // 
              this.按值渲染.Dock = System.Windows.Forms.DockStyle.Top;
              this.按值渲染.Location = new System.Drawing.Point(0, 71);
              this.按值渲染.Name = "按值渲染";
              this.按值渲染.Size = new System.Drawing.Size(116, 23);
              this.按值渲染.TabIndex = 3;
              this.按值渲染.Text = "按值渲染";
              this.按值渲染.Click += new System.EventHandler(this.按值渲染_Click);
              // 
              // 分类渲染
              // 
              this.分类渲染.Dock = System.Windows.Forms.DockStyle.Top;
              this.分类渲染.Location = new System.Drawing.Point(0, 94);
              this.分类渲染.Name = "分类渲染";
              this.分类渲染.Size = new System.Drawing.Size(116, 23);
              this.分类渲染.TabIndex = 4;
              this.分类渲染.Text = "分类渲染";
              this.分类渲染.Click += new System.EventHandler(this.分类渲染_Click);
              // 
              // Z值渲染
              // 
              this.Z值渲染.Dock = System.Windows.Forms.DockStyle.Top;
              this.Z值渲染.Location = new System.Drawing.Point(0, 117);
              this.Z值渲染.Name = "Z值渲染";
              this.Z值渲染.Size = new System.Drawing.Size(116, 23);
              this.Z值渲染.TabIndex = 5;
              this.Z值渲染.Text = "Z值渲染";
              this.Z值渲染.Click += new System.EventHandler(this.Z值渲染_Click);
              // 
              // 组渲染
              // 
              this.组渲染.Dock = System.Windows.Forms.DockStyle.Top;
              this.组渲染.Location = new System.Drawing.Point(0, 140);
              this.组渲染.Name = "组渲染";
              this.组渲染.Size = new System.Drawing.Size(116, 23);
              this.组渲染.TabIndex = 6;
              this.组渲染.Text = "组渲染";
              this.组渲染.Click += new System.EventHandler(this.组渲染_Click);
              // 
              // 退出
              // 
              this.退出.Dock = System.Windows.Forms.DockStyle.Bottom;
              this.退出.Location = new System.Drawing.Point(0, 402);
              this.退出.Name = "退出";
              this.退出.Size = new System.Drawing.Size(116, 23);
              this.退出.TabIndex = 7;
              this.退出.Text = "退出";
              this.退出.Click += new System.EventHandler(this.退出_Click);
              // 
              // 标注渲染
              // 
              this.标注渲染.Dock = System.Windows.Forms.DockStyle.Top;
              this.标注渲染.Location = new System.Drawing.Point(0, 163);
              this.标注渲染.Name = "标注渲染";
              this.标注渲染.Size = new System.Drawing.Size(116, 23);
              this.标注渲染.TabIndex = 7;
              this.标注渲染.Text = "标注渲染";
              this.标注渲染.Click += new System.EventHandler(this.标注渲染_Click);
              // 
              // 删除所有渲染
              // 
              this.删除所有渲染.Dock = System.Windows.Forms.DockStyle.Top;
              this.删除所有渲染.Location = new System.Drawing.Point(0, 319);
              this.删除所有渲染.Name = "删除所有渲染";
              this.删除所有渲染.Size = new System.Drawing.Size(116, 23);
              this.删除所有渲染.TabIndex = 22;
              this.删除所有渲染.Text = "删除所有渲染";
              this.删除所有渲染.Click += new System.EventHandler(this.删除所有渲染_Click);
              // 
              // panel1
              // 
              this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
              this.panel1.Location = new System.Drawing.Point(0, 299);
              this.panel1.Name = "panel1";
              this.panel1.Size = new System.Drawing.Size(116, 20);
              this.panel1.TabIndex = 21;
              // 
              // 全图
              // 
              this.全图.Dock = System.Windows.Forms.DockStyle.Top;
              this.全图.Location = new System.Drawing.Point(0, 276);
              this.全图.Name = "全图";
              this.全图.Size = new System.Drawing.Size(116, 23);
              this.全图.TabIndex = 20;
              this.全图.Text = "全图";
              this.全图.Click += new System.EventHandler(this.全图_Click);
              // 
              // 拖动
              // 
              this.拖动.Dock = System.Windows.Forms.DockStyle.Top;
              this.拖动.Location = new System.Drawing.Point(0, 253);
              this.拖动.Name = "拖动";
              this.拖动.Size = new System.Drawing.Size(116, 23);
              this.拖动.TabIndex = 19;
              this.拖动.Text = "拖动";
              this.拖动.Click += new System.EventHandler(this.拖动_Click);
              // 
              // 缩小
              // 
              this.缩小.Dock = System.Windows.Forms.DockStyle.Top;
              this.缩小.Location = new System.Drawing.Point(0, 230);
              this.缩小.Name = "缩小";
              this.缩小.Size = new System.Drawing.Size(116, 23);
              this.缩小.TabIndex = 18;
              this.缩小.Text = "缩小";
              this.缩小.Click += new System.EventHandler(this.缩小_Click);
              // 
              // 放大
              // 
              this.放大.Dock = System.Windows.Forms.DockStyle.Top;
              this.放大.Location = new System.Drawing.Point(0, 207);
              this.放大.Name = "放大";
              this.放大.Size = new System.Drawing.Size(116, 23);
              this.放大.TabIndex = 17;
              this.放大.Text = "放大";
              this.放大.Click += new System.EventHandler(this.放大_Click);
              // 
              // 分隔符
              // 
              this.分隔符.Dock = System.Windows.Forms.DockStyle.Top;
              this.分隔符.Location = new System.Drawing.Point(0, 186);
              this.分隔符.Name = "分隔符";
              this.分隔符.Size = new System.Drawing.Size(116, 21);
              this.分隔符.TabIndex = 16;
              // 
              // 渲染示例
              // 
              this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
              this.ClientSize = new System.Drawing.Size(616, 429);
              this.Controls.Add(this.操作板);
              this.Controls.Add(this.map);
              this.Name = "渲染示例";
              this.Text = "渲染示例";
              this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
              ((System.ComponentModel.ISupportInitialize)(this.map)).EndInit();
              this.操作板.ResumeLayout(false);
              this.ResumeLayout(false);
         }
          #endregion
         /// 
         /// 应用程序的主入口点。
         /// 
          [STAThread]
         static void Main() 
         {
              Application.Run(new 渲染示例());
         }
         /// 
         /// 退出系统
         /// 
          private void 退出_Click(object sender, System.EventArgs e)
         {
              this.Close();
         }
         /// 
         /// 图表渲染,值方图
         /// 
          private void 直方图_Click(object sender, System.EventArgs e)
         {
              //直方图的例子中使用Lakers图层
              //
              //定义图标渲染变量
              MapObjects2.ChartRenderer cr = new MapObjects2.ChartRendererClass();
              //设置渲染类型为直方图
              cr.ChartType = MapObjects2.ChartTypeConstants.moBar;
              //设置直方图显示的字段个数为两个,就是直方图显示两个柱子
              cr.FieldCount = 2;
              //设置第一个字段,请参看lakes.dbf
              cr.set_Field(0,"SURF_ELEV");
              //设置这个直方图的柱子颜色为红色
              cr.set_Color(0,(uint)MapObjects2.ColorConstants.moRed);
              //设置第二个柱子
              cr.set_Field(1,"DEPTH");
              cr.set_Color(1,(uint)MapObjects2.ColorConstants.moGreen);
              MapObjects2.MapLayer lyr = (MapObjects2.MapLayer)(map.Layers.Item("lakes"));
              lyr.Renderer = cr;
              //使用Refresh()刷新老也是刷新不好,正没办法。。。,设为全图倒是不错的注意,^_^
              map.Refresh();
         }
         /// 
         /// 全图视野
         /// 
          private void 全图_Click(object sender, System.EventArgs e)
         {
              map.Extent = map.FullExtent;
         }
         /// 
         /// 拖动,只设置图标
         /// 
          private void 拖动_Click(object sender, System.EventArgs e)
         {
              map.MousePointer = MapObjects2.MousePointerConstants.moPan;
         }
         /// 
         /// 缩小,只设置图标
         /// 
          private void 缩小_Click(object sender, System.EventArgs e)
         {
              map.MousePointer = MapObjects2.MousePointerConstants.moZoomOut;
         }
         /// 
         /// 放大,只设置图标
         /// 
          private void 放大_Click(object sender, System.EventArgs e)
         {
              map.MousePointer = MapObjects2.MousePointerConstants.moZoomIn;
         }
         /// 
         /// 鼠标按下时间,处理地图放大、缩小、拖动等。
         /// 
          private void map_MouseDownEvent(object sender, AxMapObjects2._DMapEvents_MouseDownEvent e)
         {
              MapObjects2.Rectangle rect;
              MapObjects2.Point pt = map.ToMapPoint(e.x,e.y);
              if(e.button == 2)//右键点击取消
              {
                   map.MousePointer = MapObjects2.MousePointerConstants.moDefault;
              }
              if(map.MousePointer == MapObjects2.MousePointerConstants.moPan)//拖动
              {
                   map.Pan();
              }
              else if(map.MousePointer == MapObjects2.MousePointerConstants.moZoomIn)//放大
              {
                   rect = map.TrackRectangle();
                   if(rect == null|| (rect.Width 

    
 
 

您可能感兴趣的文章:

  • 通过javascript库JQuery实现页面跳转功能代码
  • 我想把csdn的论坛改成一个软件平台,另外增加数据查询功能,聊天功能,不知怎样实现比较好?我想用jbuider 7+SQL server实现,不知如何?
  • 基于python实现的网络爬虫功能:自动抓取网页介绍
  • 我想做linux下的还原备份,实现与还原精灵虚拟还原等一样的功能,应该怎么做?另外现在有实现这种功能的成熟产品是哪一种?
  • struts+spring+hibernate+jquery实现分页功能的几个基本类介绍(异步加载)
  • 我想定义一个宏来实现文中功能,但是不知道我说的功能到底可不可以实现
  • Andriod UI中viewFlow实现仿淘宝的自动播放功能
  • 请问在linux下面,有没有硬盘整理的功能,或者有什么软件可以实现硬盘整理的功能?
  • 要实现无线功能部分,是单独写一个驱动,还是在原有驱动上扩充无线功能,哪个简单点?
  • 在linux下如何编程实现nslookup命令实现的IP地址和域名互相转换的功能?
  • Linux和Unix相对WIN、NETWARE有什么好处?他们之间有什么区别?WIN、NETWARE能实现的功能LINUX和UNIX能实现吗?
  • S3C2410按键驱动功能实现
  • java编程可实现一些什么样的功能?
  • 利用文件系统过滤驱动实现 类似还原卡功能 的原理是什么?
  • 请问shell能实现注册的功能吗?
  • 用KJAVA实现A6288一个功能的问题
  • 求录音机暂停功能的实现
  • 怎样实现这个功能,大家都看看。。。
  • 要做一个在applet,实现可以托拽的图形(比如长方形和线段等)?那位高手有资料?或者有没有java的第三方类库实现此功能?
  • 如何用c实现自动的telnet功能
  • 如何实现类似PHP.PB等语言中eval的函数功能?
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 通过javascript实现DIV居中,兼容各浏览器版本
  • socket实现多文件并发传输,求助多线程实现问题?
  • Python GUI编程:tkinter实现一个窗口并居中代码
  • interface 到底有什么用???实现接口,怎么实现??
  • sharepoint 2010 使用STSNavigate函数实现文件下载举例
  • 怎么用Jsp实现在页面实现树型结构?
  • php实现socket实现客户端和服务端数据通信源代码
  • windows 下的PortTunnel 在linux下怎么实现?或者相应的已经实现的软件?端口映射
  • flash AS3反射实现(describeType和getDefinitionByName)
  • 网站重定向用C语言实现iptables,ACL实现
  • boost unordered_map和std::list相结合的实现LRU算法
  • 求在freebsd+Squid下实现pc上网的透明代理的实现方法!给出具体配置方法的高分谢!
  • c#通过委托delegate与Dictionary实现action选择器代码举例
  • linux下如实现与window下的驱动器实现文件共享??
  • 使用java jdk中的LinkedHashMap实现简单的LRU算法
  • qt如何实现:操作键盘实现数据的滚动?
  • iphone cocos2d 精灵的动画效果(图片,纹理,帧)CCAnimation实现
  • 我想用APPLET实现读取客户端的图片文件,该如何实现?
  • c语言判断某一年是否为闰年的各种实现程序代码
  • PING是用TCP,还是用UDP来实现的?或是采用其它协议实现的?
  • html<pre>标签自动换行实现方法
  • ejb-ql只能 like '?%' 么?我想实现模糊查寻,想实现 like'%?%' 怎么办??


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3