gpt4 book ai didi

.net - 子窗体遵循主窗体

转载 作者:行者123 更新时间:2023-12-04 14:40:57 24 4
gpt4 key购买 nike

如何让子窗体跟随主窗体。

例如:打开一个winform[.net2],winform打开form,如果mainform在动,form就跟着mainform。

enter image description here

最佳答案

使用 MainForm 中的 LocationChanged 事件始终设置 ChildForm 的位置。

工作示例:

Form childForm = new Form();

protected override void OnLoad(EventArgs e) {
base.OnLoad(e);

childForm.StartPosition = FormStartPosition.Manual;
childForm.Width = this.Width;
childForm.Height = 96;
childForm.Location = new Point(this.Left, this.Bottom);
childForm.Show();
}

protected override void OnLocationChanged(EventArgs e) {
base.OnLocationChanged(e);

if (childForm != null) {
childForm.Location = new Point(this.Left, this.Bottom);
}
}

关于.net - 子窗体遵循主窗体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8645188/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com