| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 481 人关注过本帖
标题:请高手指教
只看楼主 加入收藏
swea
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2008-10-19
收藏
 问题点数:0 回复次数:3 
请高手指教
static void Main() //入口函数,启动Form//
        {
            Application.Run(new Form1());
        }

        private void btn_catchMe_Click(object sender, System.EventArgs e)//Click事件//
        {
            MessageBox.Show("抓到我了,算你聪明!", "抓到了");//给出一个消息//
        }

        private void Form1_MouseMove(object sender, System.Windows.Forms.MouseEventArgs e)//鼠表在form上移动事件//
        {
            int border = 50;
            int x = e.X;
            int y = e.Y;//鼠表的x坐标,y坐标//
            int left = btn_catchMe.Left;
            int right = btn_catchMe.Right;
            int top = btn_catchMe.Top;
            int bottom = btn_catchMe.Bottom;//上下左右的位置//
            /* 鼠标到按钮附近(10个象素) */
            if( x > left - border && x < right + border && y > top - border && y < bottom + border)
            {
                btn_catchMe.Top += (y > top ? -20 : 20);
                if(btn_catchMe.Top > Form1.ActiveForm.Size.Height || btn_catchMe.Bottom < 0)
                {
                    btn_catchMe.Top = Form1.ActiveForm.Size.Height/2;
                }
                btn_catchMe.Left += (x > left ? -20 : 20);
                if(btn_catchMe.Left > Form1.ActiveForm.Size.Width || btn_catchMe.Right < 0)
                {
                    btn_catchMe.Left = Form1.ActiveForm.Size.Width/2;
                }

            }
            string prompt = "Mouse(" + x.ToString() + "," + y.ToString() + ")";
            prompt += "  Button(" + left.ToString() + "," + top.ToString() + ")(" + right.ToString() + "," + bottom.ToString() + ")";
            prompt += "  ^_^ 抓不到哦";
            statusBar1.Text = prompt;
        }

        private void statusBar1_PanelClick(object sender, StatusBarPanelClickEventArgs e)
        {
        }
    }
}
是怎么实现按钮随鼠标运动的?鼠标会不会点到按钮?
搜索更多相关主题的帖子: 指教 
2008-10-19 21:25
小仙
Rank: 7Rank: 7Rank: 7
来 自:光之谷
等 级:贵宾
威 望:39
帖 子:1812
专家分:1
注 册:2008-8-8
收藏
得分:0 
我记得没这么麻烦吧,连象素都出来了,就在鼠标进入事件里头写个button的location属性改变就可以了。


仁者乐膳,智者乐睡。我都爱~
2008-10-19 21:28
swea
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2008-10-19
收藏
得分:0 
if( x > left - border && x < right + border && y > top - border && y < bottom + border)
            {
                btn_catchMe.Top += (y > top ? -20 : 20);
                if(btn_catchMe.Top > Form1.ActiveForm.Size.Height || btn_catchMe.Bottom < 0)
                {
                    btn_catchMe.Top = Form1.ActiveForm.Size.Height/2;
                }
                btn_catchMe.Left += (x > left ? -20 : 20);
这句是什么意思?
2008-10-19 21:46
小仙
Rank: 7Rank: 7Rank: 7
来 自:光之谷
等 级:贵宾
威 望:39
帖 子:1812
专家分:1
注 册:2008-8-8
收藏
得分:0 
判断边界的?我记得我以前做的时候用的是随机函数,可以给个范围,不用判断是否越界的问题/


仁者乐膳,智者乐睡。我都爱~
2008-10-19 22:11
快速回复:请高手指教
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.030368 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved