PropertyValueUIHandler デリゲート
アセンブリ: System.Drawing (system.drawing.dll 内)

Public Delegate Sub PropertyValueUIHandler ( _ context As ITypeDescriptorContext, _ propDesc As PropertyDescriptor, _ valueUIItemList As ArrayList _ )
public delegate void PropertyValueUIHandler ( ITypeDescriptorContext context, PropertyDescriptor propDesc, ArrayList valueUIItemList )
public delegate void PropertyValueUIHandler ( ITypeDescriptorContext^ context, PropertyDescriptor^ propDesc, ArrayList^ valueUIItemList )
/** @delegate */ public delegate void PropertyValueUIHandler ( ITypeDescriptorContext context, PropertyDescriptor propDesc, ArrayList valueUIItemList )

このデリゲートが呼び出されると、指定されたプロパティに対する UI 項目を含む PropertyValueUIItem を、valueUIItemList パラメータとして渡された ArrayList に追加します。

次に示すのは、HorizontalMargin または VerticalMargin という名前のすべてのプロパティに対して PropertyValueUIItem オブジェクトを提供する PropertyValueUIHandler イベント ハンドラ メソッドを作成するコード例です。
' PropertyValueUIHandler delegate that provides PropertyValueUIItem ' objects to any properties named HorizontalMargin or VerticalMargin. Private Sub marginPropertyValueUIHandler(ByVal context As System.ComponentModel.ITypeDescriptorContext, ByVal propDesc As System.ComponentModel.PropertyDescriptor, ByVal itemList As ArrayList) ' A PropertyValueUIHandler added to the IPropertyValueUIService ' is queried once for each property of a component and passed ' a PropertyDescriptor that represents the characteristics of ' the property when the Properties window is set to a new ' component. A PropertyValueUIHandler can determine whether ' to add a PropertyValueUIItem for the object to its ValueUIItem ' list depending on the values of the PropertyDescriptor. If propDesc.DisplayName.Equals("HorizontalMargin") Then Dim img As Image = DeserializeFromBase64Text(imageBlob1) itemList.Add(New PropertyValueUIItem(img, New PropertyValueUIItemInvokeHandler(AddressOf Me.marginInvoke), "Test ToolTip")) End If If propDesc.DisplayName.Equals("VerticalMargin") Then Dim img As Image = DeserializeFromBase64Text(imageBlob1) img.RotateFlip(RotateFlipType.Rotate90FlipNone) itemList.Add(New PropertyValueUIItem(img, New PropertyValueUIItemInvokeHandler(AddressOf Me.marginInvoke), "Test ToolTip")) End If End Sub
// PropertyValueUIHandler delegate that provides PropertyValueUIItem // objects to any properties named HorizontalMargin or VerticalMargin. private void marginPropertyValueUIHandler(System.ComponentModel.ITypeDescriptorContext context, System.ComponentModel.PropertyDescriptor propDesc, ArrayList itemList) { // A PropertyValueUIHandler added to the IPropertyValueUIService // is queried once for each property of a component and passed // a PropertyDescriptor that represents the characteristics of // the property when the Properties window is set to a new // component. A PropertyValueUIHandler can determine whether // to add a PropertyValueUIItem for the object to its ValueUIItem // list depending on the values of the PropertyDescriptor. if( propDesc.DisplayName.Equals( "HorizontalMargin" ) ) { Image img = DeserializeFromBase64Text(imageBlob1); itemList.Add( new PropertyValueUIItem( img, new PropertyValueUIItemInvokeHandler(this.marginInvoke), "Test ToolTip") ); } if( propDesc.DisplayName.Equals( "VerticalMargin" ) ) { Image img = DeserializeFromBase64Text(imageBlob1); img.RotateFlip(RotateFlipType.Rotate90FlipNone); itemList.Add( new PropertyValueUIItem( img, new PropertyValueUIItemInvokeHandler(this.marginInvoke), "Test ToolTip") ); } }
// PropertyValueUIHandler delegate that provides PropertyValueUIItem // objects to any properties named horizontalMargin or verticalMargin. void marginPropertyValueUIHandler( System::ComponentModel::ITypeDescriptorContext^ /*context*/, System::ComponentModel::PropertyDescriptor^ propDesc, ArrayList^ itemList ) { // A PropertyValueUIHandler added to the IPropertyValueUIService // is queried once for each property of a component and passed // a PropertyDescriptor that represents the characteristics of // the property when the Properties window is set to a new // component. A PropertyValueUIHandler can determine whether // to add a PropertyValueUIItem for the object to its ValueUIItem // list depending on the values of the PropertyDescriptor. if ( propDesc->DisplayName->Equals( "horizontalMargin" ) ) { Image^ img = DeserializeFromBase64Text( imageBlob1 ); itemList->Add( gcnew PropertyValueUIItem( img,gcnew PropertyValueUIItemInvokeHandler( this, &PropertyUIComponent::marginInvoke ),"Test ToolTip" ) ); } if ( propDesc->DisplayName->Equals( "verticalMargin" ) ) { Image^ img = DeserializeFromBase64Text( imageBlob1 ); img->RotateFlip( RotateFlipType::Rotate90FlipNone ); itemList->Add( gcnew PropertyValueUIItem( img,gcnew PropertyValueUIItemInvokeHandler( this, &PropertyUIComponent::marginInvoke ),"Test ToolTip" ) ); } }
// PropertyValueUIHandler delegate that provides PropertyValueUIItem // objects to any properties named HorizontalMargin or VerticalMargin. private void MarginPropertyValueUIHandler(System.ComponentModel. ITypeDescriptorContext context, System.ComponentModel. PropertyDescriptor propDesc, ArrayList itemList) { // A PropertyValueUIHandler added to the IPropertyValueUIService // is queried once for each property of a component and passed // a PropertyDescriptor that represents the characteristics of // the property when the Properties window is set to a new // component. A PropertyValueUIHandler can determine whether // to add a PropertyValueUIItem for the object to its ValueUIItem // list depending on the values of the PropertyDescriptor. if (propDesc.get_DisplayName().Equals("HorizontalMargin")) { Image img = DeserializeFromBase64Text(imageBlob1); itemList.Add(new PropertyValueUIItem(img, new PropertyValueUIItemInvokeHandler(this.MarginInvoke) , "Test ToolTip")); } if (propDesc.get_DisplayName().Equals("VerticalMargin")) { Image img = DeserializeFromBase64Text(imageBlob1); img.RotateFlip(RotateFlipType.Rotate90FlipNone); itemList.Add(new PropertyValueUIItem(img, new PropertyValueUIItemInvokeHandler(this.MarginInvoke) , "Test ToolTip")); } } //MarginPropertyValueUIHandler

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からPropertyValueUIHandler デリゲートを検索する場合は、下記のリンクをクリックしてください。

- PropertyValueUIHandler デリゲートのページへのリンク