我是新用户并使用Winform。我有一个问题是将子窗体对话框放在主窗体应用程序上。我想将它移动到主窗体窗口的右下角,但我的代码不起作用。我不明白。请帮帮我。
basketForm = new Basket();
basketForm.Owner = this;
basketForm.Show();
Point pt = new Point(0, 0);
pt.X = this.Right - basketForm.Width;
pt.Y = this.Bottom - basketForm.Height;
pt = this.PointToScreen(pt);
basketForm.Location = pt;
答案 0 :(得分:0)
您需要在显示窗口之前设置点配置。