using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using ESRI.ArcGIS.Geodatabase;
using ESRI.ArcGIS.Controls;
using ESRI.ArcGIS.Carto;

namespace 专题图自动化系统
{
    public partial class ColorMap : Form
    {
        double max, min;
        AxMapControl axMapControl1;
        string FindField;
        public ColorMap(double _max,double _min,AxMapControl ax,string findField)
        {
            InitializeComponent();
            max = _max;
            min = _min;
            axMapControl1 = ax;
            FindField = findField;
        }
        IFeatureClass pFeatureClass;
        private void FindCity()
        {
            IFeatureLayer pFeatureLayer = axMapControl1.get_Layer(0) as IFeatureLayer;
            if (pFeatureLayer != null)
                pFeatureClass = pFeatureLayer.FeatureClass;
            int[] index = new int[2];//name字段+查询依据字段
            for (int i = 0; i < index.Length; i++)
            {
                if (i == 0)
                    index[i] = pFeatureClass.Fields.FindField("name");
                else
                    index[i] = pFeatureClass.Fields.FindField(FindField);
            }
            IFeatureCursor pFeatureCursor = pFeatureClass.Search(null,false);
            IFeature pFeature = pFeatureCursor.NextFeature();
            object [] value=new object[index.Length];
            while (pFeature != null)
            {
                for (int i = 0; i < index.Length; i++)
                {
                    value[i] = pFeature.get_Value(index[i]);
                    if (i == 1)
                    {
                        double  a = Convert.ToDouble(value[1].ToString());
                        switch (searchCity.Length)
                        {
                            case 2: N1.Add(value[0].ToString()); break;
                            case 3: if (a <= searchCity[1]) { N1.Add(value[0].ToString());}
                            else{N2.Add(value[0].ToString());}break;
                            case 4: if (a <= searchCity[1]) { N1.Add(value[0].ToString()); }
                                if (a > searchCity[1] && a <= searchCity[2]) { N2.Add(value[0].ToString()); }
                                if (a > searchCity[2]) { N3.Add(value[0].ToString()); }break;
                            case 5: if (a <= searchCity[1]) { N1.Add(value[0].ToString()); }
                                if (a > searchCity[1] && a <= searchCity[2]) { N2.Add(value[0].ToString()); }
                                if (a > searchCity[2]&&a<=searchCity[3]) { N3.Add(value[0].ToString()); }
                                if(a>searchCity[3]){N4.Add(value[0].ToString());}break;
                            case 6: if (a <= searchCity[1]) { N1.Add(value[0].ToString()); }
                                if (a > searchCity[1] && a <= searchCity[2]) { N2.Add(value[0].ToString()); }
                                if (a > searchCity[2] && a <= searchCity[3]) { N3.Add(value[0].ToString()); }
                                if (a > searchCity[3]&&a<=searchCity[4]) { N4.Add(value[0].ToString()); }
                                if(a>searchCity[4]){N5.Add(value[0].ToString());}break;
                        }
                    }
                    
                }
                pFeature = pFeatureCursor.NextFeature();
            }
        }
        List<string> N1 = new List<string>();
        List<string> N2 = new List<string>();
        List<string> N3 = new List<string>();
        List<string> N4 = new List<string>();
        List<string> N5 = new List<string>();
        private void DrawCity()
        {
            Bitmap bt = new Bitmap(panel3.Width,panel3.Height);
            Graphics g = Graphics.FromImage(bt);
            Pen pen = new Pen(Color.Black,1);
            string []n1=new string[6];
            if (N1 != null)
            {
                foreach (string a in N1)
                {
                    n1[1] += a + ",";
                }
            }
            if (N2 != null)
            {
                foreach (string a in N2)
                {
                    n1[2] += a + ",";
                }
            }
            if (N3 != null)
            {
                foreach (string a in N3)
                {
                    n1[3] += a + ",";
                }
            }
            if (N4 != null)
            {
                foreach (string a in N4)
                {
                    n1[4] += a + ",";
                }
            }
            if (N5 != null)
            {
                foreach (string a in N5)
                {
                    n1[5] += a + ",";
                }
            }
            for (int i = 1; i <= n; i++)
            {
                g.DrawString("第" + i + "级:" +n1[i], new Font("黑体", 10), new SolidBrush(Color.Black), new PointF(20, 25 * i));
            }
            panel3.BackgroundImage = bt;
        }
        private void DrawString()
        {
            Bitmap bt = new Bitmap(panel2.Width,panel2.Height);
            Graphics g = Graphics.FromImage(bt);
            Pen pen = new Pen(Color.Black,1);
            double fromValue = min;
            searchCity[0] = fromValue;
            double toValue;
            for (int i = 1; i <= n; i++)
            {
                if (i == index)
                    toValue = min + (x2 - temp[1]) * k / flag;
                else
                    toValue=min + i * k;
                searchCity[i] = toValue;
                g.DrawString("第"+i+"级:"+fromValue+"万到"+toValue+"万",new Font("黑体",10),new SolidBrush(Color.Black),new PointF(20,25*i));
                fromValue=toValue;
            }
            panel2.BackgroundImage = bt;
        }
        double k;
        private void DrawZft()
        {
            Bitmap bt = new Bitmap(panel1.Width,panel1.Height);
            Graphics g = Graphics.FromImage(bt);
            Pen pen = new Pen(Color.White,1);
            g.DrawLine(pen,new Point(30,0),new Point(30,panel1.Height-30));
            g.DrawLine(pen,new Point(30,panel1.Height-30),new Point(panel1.Width-4,panel1.Height-30));
            k = (max - min) / n;
            for (int i = 1; i <= n+1; i++)
            {
                if (i == index)
                {
                    g.DrawString((min + (x2-temp[1]) * k/flag).ToString(), new Font("宋体", 9), new SolidBrush(Color.White), new PointF(x2 - 2, panel1.Height-30));
                    g.DrawLine(pen, new PointF(x2, panel1.Height-30), new PointF(x2, 0));
                }
                else
                {
                    g.DrawString((min + (i-1) * k).ToString(), new Font("宋体", 9), new SolidBrush(Color.White), new PointF(temp[i] - 8, panel1.Height-30));
                    g.DrawLine(pen, new PointF(temp[i], panel1.Height-30), new PointF(temp[i], 0));
                }
            }
            panel1.BackgroundImage = bt;
        }
        int n=0;
        float[] temp;
        int flag;
        double []searchCity;
        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {
            n = int.Parse(comboBox1.SelectedItem.ToString());
            temp = new float[n + 2];
            searchCity=new double[n+1];
            flag = (panel1.Width - 4) / (n + 1);
            for (int i = 1; i <= n+1; i++)
            {
                temp[i] = flag * i;
            }
            if (N1 != null)
                N1.Clear();
            if (N2 != null)
                N2.Clear();
            if (N3 != null)
                N3.Clear();
            if (N4 != null)
                N4.Clear();
            if (N5 != null)
                N5.Clear();
            DrawZft();
            DrawString();
            FindCity();
            DrawCity();
        }
        int index=0;
        int x1, x2, x3;
        private void panel1_MouseDown(object sender, MouseEventArgs e)
        {
            x1 = e.X;
            for (int i = 1; i < temp.Length; i++)
            {
                if (Math.Abs(x1 - temp[i]) < 3)
                {
                    index = i;
                }
            }
        }
        private void panel1_MouseMove(object sender, MouseEventArgs e)
        {
            x2=e.X;
            if (index != 0)
            {
                if (N1 != null)
                    N1.Clear();
                if (N2 != null)
                    N2.Clear();
                if (N3 != null)
                    N3.Clear();
                if (N4 != null)
                    N4.Clear();
                if (N5 != null)
                    N5.Clear();
                DrawZft();
                DrawString();
                FindCity();
                DrawCity();
            }
        }
        private void panel1_MouseUp(object sender, MouseEventArgs e)
        {
            x3 = e.X;
            temp[index] = x3;
            DrawZft();
            index = 0;
        }
    }
}

模仿ArcGIS用Graphics重绘的直方图分级调节器的更多相关文章

  1. windform 重绘Treeview "+-"号图标

    模仿wind系统界面,重绘Treeview + - 号图标 一,首先需要图片 ,用于替换原有的 +-号 二.新建Tree扩展类 TreeViewEx继承TreeView using System; u ...

  2. WinForm中重绘TabControl选项卡标题

    最近开发WinForm频繁使用了TabControl控件,这个控件的选项卡没有BackgroundImage这个属性,那么如何为其各个选项卡添加背景图片呢?(这里说的是每个TabPage的头部,也就是 ...

  3. java中的重绘

    void java.awt.Container.validate()Validates this container and all of its subcomponents.这个函数更新容器及其全部 ...

  4. android 之 surfaceView和普通View的重绘使用

    !自定义控件式需要实现AttrbuteSet   可在xml文件中配置略过创建该对象 普通的View只能在主线程中绘制界面,适用于简单的被动绘制 SurfaceView则可以在新线程中绘制界面,不会阻 ...

  5. C# 重绘tabControl,添加关闭按钮(续)

    在上一篇随笔中,添加关闭按钮是可以实现 ,但细心一点就会发现,每次关闭一个选项卡,tableControl都会自动跳到第一个页面,显然 这不是我们想要的,为此,我修改了部分的代码.除此之外,我还添加了 ...

  6. C# 重绘tabControl,添加关闭按钮(页签)

    C# 重绘tabControl,添加关闭按钮(页签) 调用方法 参数: /// <summary> /// 初始化 /// </summary> /// <param n ...

  7. iOS之UI--Quartz2D的入门应用--重绘下载圆形进度条

    *:first-child { margin-top: 0 !important; } body > *:last-child { margin-bottom: 0 !important; } ...

  8. 【转】【C#】C#重绘windows窗体标题栏和边框

    摘要 windows桌面应用程序都有标准的标题栏和边框,大部分程序也默认使用这些样式,一些对视觉效果要求较高的程序,如QQ, MSN,迅雷等聊天工具的样式则与传统的windows程序大不相同,其中迅雷 ...

  9. 『转载』C# winform 中dataGridView的重绘(进度条,虚线,单元格合并等)

    原文转载自:http://hi.baidu.com/suming/item/81e45b1ab9b4585f2a3e2243 最近比较浅的研究了一下dataGridView的重绘,发现里面还是有很多东 ...

随机推荐

  1. Query获取多种input值的方法

    1 if($("input[name=item][value='val']").attr('checked')==true) //判断是否已经打勾 name即控件name属性,va ...

  2. 创建Banner

    org.springframework.boot.SpringApplicationBannerPrinter#print(org.springframework.core.env.Environme ...

  3. thinkPHP5.0获取器

    获取器的作用是在获取数据的字段值后自动进行处理,例如,我们需要对状态值进行转换,可以使用: class Cate extends Model { public function getTypeAttr ...

  4. Hive 遇到 Class path contains multiple SLF4J bindings

    Hive 遇到 Class path contains multiple SLF4J bindings Root Issue; slf4j在两处找到了jar包.分别是在Hadoop和hive的安装目录 ...

  5. 利用vue-cli搭建vue项目

    手把手教你用vue-cli搭建vue项目 本篇主要是利用vue-cli来搭建vue项目,其中前提是node和npm已经安装好,文章结尾将会简单提到一个简单的例子.使用vue-cli搭建项目最开始我也是 ...

  6. ORACLE 12.2 RAC TNS-12520 遭遇连接风爆 (connection storm)

    故障现象:数据库迁移到新环境刚过两天.今天生产核心数,断断继续的告警连接不上.这是问题! 如理思路:1.查看alert日志,日志无报错                  2.查看连接数,参数设置的20 ...

  7. Spring Boot 实现ErrorController接口处理404、500等错误页面

    在项目中我们遇到404找不到的错误.或者500服务器错误都需要配置相应的页面给用户一个友好的提示,而在Spring Boot中我们需要如何设置. 我们需要实现ErrorController接口,重写h ...

  8. Linux的page cache使用情况/命中率查看和操控

    转载自宋宝华:https://blog.csdn.net/21cnbao/article/details/80458173 这里总结几个Linux文件缓存(page cache)使用情况.命中率查看的 ...

  9. java多线程优先级问题

    java 中的线程优先级的范围是1-10,默认的优先级是5.“高优先级线程”会优先于“低优先级线程”执行. 例子: package com.ming.thread.threadpriority; pu ...

  10. GitKraken使用教程-基础部分(7)

    8.  本地分支和标签 1) 在提交记录区中查看分支状态 提交记录区中每一个分支都位于一个提交记录所在的行中. 从图 2‑1中可以看到,服务器上的master分支停留在整理格式(把这个提交记录记为or ...