HwndHost.BuildWindowCore(HandleRef) メソッド

定義

派生クラスでオーバーライドされると、ホストされるウィンドウを作成します。

protected:
 abstract System::Runtime::InteropServices::HandleRef BuildWindowCore(System::Runtime::InteropServices::HandleRef hwndParent);
protected abstract System.Runtime.InteropServices.HandleRef BuildWindowCore (System.Runtime.InteropServices.HandleRef hwndParent);
abstract member BuildWindowCore : System.Runtime.InteropServices.HandleRef -> System.Runtime.InteropServices.HandleRef
Protected MustOverride Function BuildWindowCore (hwndParent As HandleRef) As HandleRef

パラメーター

hwndParent
HandleRef

親ウィンドウのウィンドウ ハンドル。

戻り値

HandleRef

作成する子 Win32 ウィンドウへのハンドル。

注釈

このメソッドの実装は、内部実装 BuildWindowCore内から呼び出されます。

子ウィンドウは、呼び出し元のスレッドがウィンドウを所有している場合にのみ作成されます。

注意 (実装者)

ホストされているウィンドウをビルドするには、このメソッドをオーバーライドします。

返すウィンドウは、で指定された hwndParentウィンドウの子である必要があります。

さらに、子ウィンドウは、呼び出し元のスレッドによってウィンドウが所有されている場合にのみ作成されます。

適用対象