【C#】限制鼠标只能在环上、在圆内移动

要达到这一效果。或者,不满足条件时,禁止鼠标移动也可。... 要达到这一效果。

或者,
不满足条件时,禁止鼠标移动也可。
展开
 我来答
头奖彩票网
2009-03-24 · TA获得超过368个赞
知道小有建树答主
回答量:237
采纳率:0%
帮助的人:104万
展开全部
在winform中:给你一个按钮的示例
private void button1_Click(object sender,EventArgs e)
{
this.Cursor=new Cursor(Cursor.Current.Handle);
Cursor.Position=new Point(Cursor.Position.X,Cursor.Position.Y);
Cursor.Clip=new Rectangle(this.Location,this.Size);
}
说明:在c#类库中,我知道有针对在矩形内的限制。貌似没有针对圆的限制哈。不过你可以用程序动态改变Rectangle中第二个参数值,使之符合你的要求。。 第一个参数是左上角的位置,你也可以用重载方法
Cursor.Clip=new Rectangle(int x, int y, int width, int height)指定左上角位置

//解除对鼠标活动区域的限制
private void button2_Click(object sender,EventArgs e)
{
Screen[] screens=Screen.AllScreens;
this.Cursor=new Cursor(Cursor.Current.Handle);
Cursor.Clip=screens[0].Bounds;
}
lilei_ll_ii
2009-03-24 · TA获得超过446个赞
知道小有建树答主
回答量:348
采纳率:100%
帮助的人:315万
展开全部
我这有一段代码,是控制鼠标在FORM内移动的, 就2个按钮,没有其他,你可以参考一下
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace MouseMove
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//限制鼠标活动区域
private void button1_Click(object sender, EventArgs e)
{
this.Cursor = new Cursor(Cursor.Current.Handle);
Cursor.Position = new Point(Cursor.Position.X, Cursor.Position.Y);
Cursor.Clip = new Rectangle(this.Location, this.Size);
}
//解除限定
private void button2_Click(object sender, EventArgs e)
{
Screen[] screens = Screen.AllScreens;
this.Cursor = new Cursor(Cursor.Current.Handle);
Cursor.Clip = screens[0].Bounds;
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式