大家!
当用户在窗口中单击maximumbox时,我需要跟踪事件。
有可能吗?

最佳答案

尝试以下操作:使用WindowsState属性

   private void  Form1_Resize(object sender, EventArgs e)
   {
       if (this.WindowState == FormWindowState.Maximized)
       {
           \\ code to execute after Maximize button has been clicked
           MessageBox.Show(this.WindowState.ToString());

       }
   }

09-16 18:55