バージョン

OwnerDataInitialized イベント

オーナーのデータが初期化または再初期化された後に発生します。
シンタックス
'宣言
 
Public Event OwnerDataInitialized As OwnerDataInitializedEventHandler
public event OwnerDataInitializedEventHandler OwnerDataInitialized
イベント データ

イベント ハンドラが、このイベントに関連するデータを含む、OwnerDataInitializedEventArgs 型の引数を受け取りました。次の OwnerDataInitializedEventArgs プロパティには、このイベントの固有の情報が記載されます。

プロパティ解説
Owner 初期化または再初期化するオーナー。
使用例
'If the name has not been set, set it to the same as the key
e.Owner.Visible = True
If (e.Owner.Name Is Nothing OrElse e.Owner.Name.Length = 0) Then
    e.Owner.Name = e.Owner.Key
End If
//If the name has not been set, set it to the same as the key
e.Owner.Visible = true;
if ( e.Owner.Name == null || e.Owner.Name.Length == 0 )
{
             e.Owner.Name = e.Owner.Key;
}
参照