【.Net】鼠标点击控制鼠标活动范围 ClipCursor

可以使用API ClipCursor,如果你不嫌麻烦的话。

以下方法:

    Private Sub Form1_MouseDown(sender As System.Object, e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseDown
        Dim X, Y As Integer
        Dim loc As System.Drawing.Point = Me.Location + Me.MonthCalendar1.Location
        X = (Me.Width - Me.ClientRectangle.Width) / 2
        Y = (Me.Height - Me.ClientRectangle.Height - SystemInformation.CaptionHeight) / 2 + SystemInformation.CaptionHeight
        loc.X = loc.X + X
        loc.Y = loc.Y + Y

        System.Windows.Forms.Cursor.Clip = New Rectangle(loc, Me.MonthCalendar1.Size)
    End Sub

    Private Sub Form1_MouseUp(sender As System.Object, e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseUp
        System.Windows.Forms.Cursor.Clip = System.Windows.Forms.Screen.PrimaryScreen.Bounds
    End Sub
View Code

 

1。MouseDown事件控制鼠标范围,MouseUp事件解除控制。

2。System.Windows.Forms.Cursor.Clip控制鼠标活动范围。

3。使用(Me.Width - Me.ClientRectangle.Width) / 2的方式来获取位置,必须遍历控件所在的所有容器。

4。算Y轴坐标时要注意窗体的标题栏,用SystemInformation.CaptionHeight获取标题栏高度。

5。如果有TabControl这种东西,计算高度会很麻烦。如果有好办法请告诉我。我的解决办法是慢慢试。

转载于:https://www.cnblogs.com/TonyZhao/p/5192620.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值