'宣言 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; }