c# winform 不得不爱,(控件窗口尺寸)

2021/4/8 1:08:58

本文主要是介绍c# winform 不得不爱,(控件窗口尺寸),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

  private void button2_MouseEnter(object sender, EventArgs e) //mouseENter方法,鼠标进入图形部分时
        {
            //根据客户端尺寸变更长短
            int x = this.ClientSize.Width - button2.ClientSize.Width;
            int y = this.ClientSize.Height - button2.ClientSize.Height;
            //随机数 next()
            Random rom = new Random();
            //point为结构
            button2.Location = new Point(rom.Next(0,x),rom.Next(0,y));
        }

  

 



这篇关于c# winform 不得不爱,(控件窗口尺寸)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程