私は新しいユーザーで、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;