本文介绍了在窗体调整大小或最大化时重新放置控件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当表单调整大小或最大化时,我想重新放置控件.代码是什么.

例如,我在窗体的右下角放置了一个命令按钮.如果表单最大化或调整大小,则命令按钮将位于相同位置.

 私有  void  fMain_Resize(对象发​​件人,EventArgs e)
{
    button1.Location = 点(( int )((< float ) this  .Location.X *  0 . 8 ),( int )((< float ) this  .Location.Y *  0 . 8 )));
} 



I want to repositioning a controll when form resizes or maximised. What will be the code.

for example I''ve placed a commandbutton lower right corner of the form. If the form maximised or resized then the command button will in the same position.

解决方案



这篇关于在窗体调整大小或最大化时重新放置控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 14:02