FarPoint.Win アセンブリ > FarPoint.Win 名前空間 > PopupWindowHelper クラス : ShowPopup メソッド |
このメッセージを使用するための標準的なコードは次のとおりです。
frmPopup popup = new frmPopup(); Point location = this.PointToScreen(new Point(button1.Left, button1.Bottom)); popupHelper.ShowPopup(this, popup, location);
System.Windows.Forms.Form.Load イベントではなくポップアップフォームのコンストラクターにできるかぎり多くの初期化コードを指定します。そうした方が外観が向上します。
'Declaration Public Sub ShowPopup( _ ByVal owner As Control, _ ByVal popup As Form, _ ByVal location As Point _ )
'使用法 Dim instance As PopupWindowHelper Dim owner As Control Dim popup As Form Dim location As Point instance.ShowPopup(owner, popup, location)