设置mapcontrol的鼠标样式
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的鼠标样式的更多相关文章
- 四大伪类,css鼠标样式设置,reset操作,静止对文本操作
07.31自我总结 一.a标签的四大伪类 a:link{样式} 未访问时的状态(鼠标点击前显示的状态) a:hover{样式} 鼠标悬停时的状态 a:visited{样式} 已访问过的状态(鼠标点击后 ...
- C#开发分享:如何改变系统鼠标样式
开发过程中发现需要用到改变鼠标样式(就是光标的样子),但是在网上找了很多资料,都是介绍在程序中使用,我需要的效果时在系统级使用.现在找到了,分享给大家. [DllImport("user32 ...
- ArcGIS AddIN开发之自定义鼠标样式
如果想修改Windows默认的鼠标样式,可以这样 //设置鼠标样式 this.Cursor = System.Windows.Forms.Cursors.Cross; 可是如果想设置成一些自定义的很好 ...
- CSS鼠标样式整理
鼠标样式的标签: cursor:*; //该属性定义了鼠标指针放在一个元素边界范围内时所用的光标形状: 鼠标样式: 值 描述 url 需使用的自定义光标的 URL. 注释:请在此列表的末端始终定义一 ...
- Arcgis for javascript不同的状态下自己定义鼠标样式
俗话说:爱美之心.人皆有之. 是的.没错,即使我仅仅是一个做地图的,我也希望自己的地图看起来好看一点. 在本文,给大家讲讲在Arcgis for javascript下怎样自己定义鼠标样式. 首先.说 ...
- Windows Phone 8初学者开发—第6部分:设置应用程序的样式
原文 Windows Phone 8初学者开发—第6部分:设置应用程序的样式 Source Code: http://aka.ms/absbeginnerdevwp8 PDF Version: ht ...
- Wpf中鼠标样式的修改,作用点修改
最近,在做一个控件的鼠标样式,Ps加了插件,可以编辑生成.cur格式的图标. 可是,所有的改完以后,调试运行,结果发现自己制作的图标的作用点总是在左上角,而不是在"手形"图标的食指 ...
- CSS 鼠标样式大全
cursor是CSS中用于定义鼠标在元素标签上的显示样式,如常用的手型鼠标样式 cursor: pointer; 也可以通过url网址指定扩展名一般为.cur的鼠标图片文件. 名称 属性代码 描述 默 ...
- CSS鼠标样式 cursor 属性
值 描述 url 需使用的自定义光标的 URL. 注释:请在此列表的末端始终定义一种普通的光标,以防没有由 URL 定义的可用光标. default 默认光标(通常是一个箭头) auto 默认.浏览器 ...
随机推荐
- PCL 不同类型的点云之间进行类型转换
PCL 不同类型的点云之间进行类型转换 可以使用PCL里面现成的函数pcl::copyPointCloud(): #include <pcl/common/impl/io.h> pcl:: ...
- 16、GATK使用简介 Part1/2
转载:http://blog.sina.com.cn/s/blog_6721167201018fyw.html GATK (全称The Genome Analysis Toolkit)是Broad I ...
- Entity Framework:Code-First Tutorial开篇
这个系列文章是关于Entity Framework Code-First的英文系列文章,内容不错,每篇一个主题知识点介绍,特转载过来 原文地址:http://www.entityframeworktu ...
- 【OpenGL】Shader概述
目录(?)[-] 综述 编译一个Shader 链接一个Shader 删除一个Shader 指定使用一个Shader Program 删除一个Shader Program 备注 这篇文章讲述了Shade ...
- 微信小程序自学第五课:条件渲染、列表渲染
一.条件渲染 1. wx:if 在框架中,我们用 wx:if="{{condition}}" 来判断是否需要渲染该代码块: <view wx:if="{{condi ...
- java第一天--Java开发环境的搭建以及使用eclipse从头一步步创建java项目
一.java 开发环境的搭建 这里主要说的是在windows 环境下怎么配置环境. 1.首先安装JDK java的sdk简称JDK ,去其官方网站下载最近的JDK即可..http://www.orac ...
- Redis学习笔记(一):基础数据结构
一. 引言 <Redis设计与实现>一书主要分为四个部分,其中第一个部分主要讲的是Redis的底层数据结构与对象的相关知识. Redis是一种基于C语言编写的非关系型数据库,它的五种基本对 ...
- Android代码笔记
1. 如何监听Android的短信收发,自动填充验证码? getContentResolver().registerContentObserver(Uri.parse(SMS_URI_ALL), tr ...
- 基于ECharts的股票行情分时、K线、MACD、DIF、DEA图表 (绝无仅有)
先上效果图 源码和使用说明已经开源至GitHub,欢迎各位能提出宝贵的意见噢 https://github.com/2557606319/H5-Kline
- Nacos深入浅出(九)
然而Nacos的发布操作并不是上面我们想的那样通过代理去实现,通过下面的代码我们分析下: public class NacosConfigurationPropertiesBindingPostPro ...