以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 控件的鼠标形状属性 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=28281) |
||||
-- 作者:fox0001 -- 发布时间:2013/1/24 9:52:00 -- 控件的鼠标形状属性 想问下,窗口中的控件的“鼠标形状”属性,怎样通过代码修改? 帮助文档和论坛都找不到相关的信息
|
||||
-- 作者:blueskyyq -- 发布时间:2013/1/24 9:58:00 -- 要善用搜索,论坛里有的 http://www.foxtable.com/bbs/dispbbs.asp?BoardID=2&ID=17551&skin=0 |
||||
-- 作者:lin_hailun -- 发布时间:2013/1/24 10:06:00 -- 很简单。 Dim cur As New System.Windows.Forms.Cursor(ProjectPath & "test.cur") e.Form.Controls("TreeView1").BaseControl.Cursor = cur
|
||||
-- 作者:fox0001 -- 发布时间:2013/1/24 10:09:00 -- 谢谢~!习惯了搜索“内容”,没搜索“标题”,所以找不到 |
||||
-- 作者:lin_hailun -- 发布时间:2013/1/24 10:21:00 -- 一些常用的形状。 e.Form.Controls("Button1").BaseControl.Cursor = Windows.Forms.Cursors.Hand http://msdn.microsoft.com/zh-cn/library/system.windows.input.cursors_properties%28v=vs.90%29.aspx |