有没有一种方法可以从两边削减按钮的宽度?
例如,如果我默认情况下将按钮的宽度减少了300,它将从右向左切割,但是我想从左边做-150,从右边做-150。
[我试图完成的工作在下面的链接中有很多描述,但是该解决方案对我不起作用。
Is there a way to animate the width of button programmatically from both sides
任何帮助将不胜感激。
如果我理解正确,您想从Width
中减去一半,并将另一半添加到Left
属性中。
int x = 300;
button.Width -= x / 2;
button.Left += x / 2;