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.
我正在尝试为我的网站即兴聊天。我有 2 个文本框(一个用于问题的主题,另一个用于问题的内容)。单击某个按钮后,我使用结果更新标签。
标签的位置不是我想要的。如何调整标签的位置?
您需要设置标签的边界以更改其位置和大小(假设您指的是 WinForms)。或者,您可以直接设置Location属性。
您还可以使用Location属性来设置标签在表单上的位置。
Location
private void button_Click(object sender, RoutedEventArgs e) { textblock_name.Margin = new Thickness(338, 57, 0, 0); }
您可以使用上面的代码动态更改位置