本文介绍了WinForms - 调整大小事件后的动作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可以在调整大小事件(用户控件)之后执行特定动作,例如当鼠标按钮被释放时?我需要手动调整一个内部控件的大小,并且在每次单次触发事件时都会这样做,那么这个效率就是很低的...

Is it possible to perform a specific action after the resize event (of the user control), for example when mouse button is released? I need to manually resize an inner control and doing it on every single firing of the event would be quite, hmm, inefficient...

推荐答案

只需使用事件:

Just use the ResizeEnd event:

private void Form1_ResizeEnd(object sender, EventArgs e)
{
   // Your code here
}

从MSDN:

From MSDN:

这篇关于WinForms - 调整大小事件后的动作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-04 21:31