Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在面板内有一个三个面板,名为panelbase
panelbase
我尝试
面板left底座是left
left
面板right底座是right和
right
面板button是fill。
button
fill
但按钮位置不在中心。
这是捕获
如何调整面板left和面板的大小right,当我拖动拆分器时,面板按钮位置始终在中心?
您可以将该Anchor属性用于您的buttons. 首先,使其居中,然后执行以下操作:
Anchor
buttons
button1.Anchor = AnchorStyles.None;
要使用代码使按钮居中,您可以执行以下操作:
button1.Left = (buttonPanel.Width - button1.Width)/2;