如何使用winforms从两侧切割按钮的宽度?

问题描述 投票:0回答:1

有没有一种方法可以从两边削减按钮的宽度?

例如,如果我默认情况下将按钮的宽度减少了300,它将从右向左切割,但是我想从左边做-150,从右边做-150。

[我试图完成的工作在下面的链接中有很多描述,但是该解决方案对我不起作用。

Is there a way to animate the width of button programmatically from both sides

任何帮助将不胜感激。

c# winforms button resize width
1个回答
1
投票

如果我理解正确,您想从Width中减去一半,并将另一半添加到Left属性中。

int x = 300;
button.Width -= x / 2;
button.Left += x / 2;
© www.soinside.com 2019 - 2024. All rights reserved.