http://blog.itpub.net/14999074/viewspace-586515/

mapcontrol的鼠标样式

this.axMapControl1.MousePointer=esriControlsMousePointer.esriPointerDefault;还可以是下面的值:

esriControlsMousePointer Constants

Control mouse pointer options.

Constant Value Description
esriPointerParentWindow -1 pointer specified on the parent window or form.
esriPointerDefault 0 Default pointer, same as arrow.
esriPointerArrow 1 Standard arrow.
esriPointerCrosshair 2 Crosshair.
esriPointerIBeam 3 I-Beam.
esriPointerIcon 4 Icon.
esriPointerSize 5 Size, four-pointed arrow pointing north, south, east and west.
esriPointerSizeNESW 6 Size NE-SW, double arrow pointing north-east and south-west.
esriPointerSizeNS 7 Size N-S, double arrow pointing north and south.
esriPointerSizeNWSE 8 Size NW-SE, double arrow pointing north-west and south-east.
esriPointerSizeWE 9 Size W-E, double arrow pointing west and east.
esriPointerUpArrow 10 Arrow pointing vertically up.
esriPointerHourglass 11 Hourglass, wait cursor.
esriPointerNoDrop 12 Circle with slash through it or a no entry sign.
esriPointerArrowHourglass 13 Standard arrow and small hourglass.
esriPointerArrowQuestion 14 Arrow and question mark.
esriPointerSizeAll 15 Size all, a four-pointed arrow pointing north, south, east and west.
esriPointerZoom 50 Zoom, a magnifying glass.
esriPointerZoomIn 51 Zoom in, a magnifying glass with a plus sign.
esriPointerZoomOut 52 Zoom out, a magnifying glass with a minus sign.
esriPointerPan 53 Pan, a hand.
esriPointerPanning 54 Panning, a clenched hand.
esriPointerIdentify 55 Identify, arrow with information symbol.
esriPointerLabel 56 Label, arrow with letter A.
esriPointerHotLink 57 Hot-Link, lightening strike.
esriPointerPencil 58 Pencil.
esriPointerHand 59 Hand, closed hand with index finger pointing vertically.
esriPointerPageZoomIn 60 Page zoom In, magnifying glass with plus sign and a small page.
esriPointerPageZoomOut 61 Page zoom out, magnifying glass with minus sign and a small page.
esriPointerPagePan 62 Page pan, open hand with page symbol.
esriPointerPagePanning 63 Page pan, closed hand with page symbol.
esriPointerCustom 99 Custom icon specified by the MouseIcon property.
 
 

设置mapcontrol的鼠标样式的更多相关文章

  1. 四大伪类,css鼠标样式设置,reset操作,静止对文本操作

    07.31自我总结 一.a标签的四大伪类 a:link{样式} 未访问时的状态(鼠标点击前显示的状态) a:hover{样式} 鼠标悬停时的状态 a:visited{样式} 已访问过的状态(鼠标点击后 ...

  2. C#开发分享:如何改变系统鼠标样式

    开发过程中发现需要用到改变鼠标样式(就是光标的样子),但是在网上找了很多资料,都是介绍在程序中使用,我需要的效果时在系统级使用.现在找到了,分享给大家. [DllImport("user32 ...

  3. ArcGIS AddIN开发之自定义鼠标样式

    如果想修改Windows默认的鼠标样式,可以这样 //设置鼠标样式 this.Cursor = System.Windows.Forms.Cursors.Cross; 可是如果想设置成一些自定义的很好 ...

  4. CSS鼠标样式整理

    鼠标样式的标签: cursor:*;  //该属性定义了鼠标指针放在一个元素边界范围内时所用的光标形状: 鼠标样式: 值 描述 url 需使用的自定义光标的 URL. 注释:请在此列表的末端始终定义一 ...

  5. Arcgis for javascript不同的状态下自己定义鼠标样式

    俗话说:爱美之心.人皆有之. 是的.没错,即使我仅仅是一个做地图的,我也希望自己的地图看起来好看一点. 在本文,给大家讲讲在Arcgis for javascript下怎样自己定义鼠标样式. 首先.说 ...

  6. Windows Phone 8初学者开发—第6部分:设置应用程序的样式

    原文 Windows Phone 8初学者开发—第6部分:设置应用程序的样式 Source Code: http://aka.ms/absbeginnerdevwp8  PDF Version: ht ...

  7. Wpf中鼠标样式的修改,作用点修改

    最近,在做一个控件的鼠标样式,Ps加了插件,可以编辑生成.cur格式的图标. 可是,所有的改完以后,调试运行,结果发现自己制作的图标的作用点总是在左上角,而不是在"手形"图标的食指 ...

  8. CSS 鼠标样式大全

    cursor是CSS中用于定义鼠标在元素标签上的显示样式,如常用的手型鼠标样式 cursor: pointer; 也可以通过url网址指定扩展名一般为.cur的鼠标图片文件. 名称 属性代码 描述 默 ...

  9. CSS鼠标样式 cursor 属性

    值 描述 url 需使用的自定义光标的 URL. 注释:请在此列表的末端始终定义一种普通的光标,以防没有由 URL 定义的可用光标. default 默认光标(通常是一个箭头) auto 默认.浏览器 ...

随机推荐

  1. Linux 启动顺序

    Linux 启动顺序:1. BIOS自检2. 运行系统内核并检测硬件3. 运行系统的第一个进程init4. init读取系统引导配置文件/etc/inittab中的信息进行初始化            ...

  2. Android运行时Crash自动恢复框架-Recovery

    转自:http://zhengxiaoyong.me/2016/09/05/Android%E8%BF%90%E8%A1%8C%E6%97%B6Crash%E8%87%AA%E5%8A%A8%E6%8 ...

  3. 【linux安装软件步骤】

    一.解析linux应用软件安装包: 通常Linux应用软件的安装包有三种: tar包,如software-1.2.3-1.tar.gz.它是使用UNIX系统的打包工具tar打包的. rpm包,如sof ...

  4. C# 关于跨线程访问控件问题

    跨线程访问控件问题的原因是:控件都是在主线程中创建的,而系统默认控件的修改权归其创建线程所有.在子线程中如果需要直接修改控件的内容,需要使用委托机制将控件的修改操作交给主线程处理.因此,当没有使用委托 ...

  5. C# 写 LeetCode easy #20 Valid Parentheses

    20.Valid Parentheses Given a string containing just the characters '(', ')', '{', '}', '[' and ']', ...

  6. java线程基础知识----线程基础知识

    不知道从什么时候开始,学习知识变成了一个短期记忆的过程,总是容易忘记自己当初学懂的知识(fuck!),不知道是自己没有经常使用还是当初理解的不够深入.今天准备再对java的线程进行一下系统的学习,希望 ...

  7. 获取指定日期相关DATENAME和DATEPART数据

    DATENAME和DATEPART有何区别,Insus.NET写成一个函数,可以方便查询与对比: 一个是返回一个字符串,另一个是返回一个整数. SET ANSI_NULLS ON GO SET QUO ...

  8. SQL——模糊查询

    前言 在这个大数据时代,我们都离不开对数据的增删改查,增加.删除.修改这些看似都是一步完成的事情,但是对于查询来说,好的查询SQL可以大大的减少系统内存运行时间,提高系统的反应速度.这里简单的介绍一下 ...

  9. 洛谷P4121 [WC2005]双面棋盘(线段树套并查集)

    传送门 先膜一下大佬->这里 据说这题正解是LCT,然而感觉还是线段树套并查集的更容易理解 我们对于行与行之间用线段树维护,每一行内用并查集暴力枚举 每一行内用并查集暴力枚举连通块这个应该容易理 ...

  10. 《SQL 进阶教程》 自连接分组排序:练习题1-2-2

    分组排序 SELECT d1.district, d1. NAME, (SELECT COUNT(d2.price) FROM district_products d2 WHERE d2.price ...