次の方法で共有


ObjectDataSourceDesigner.PreFilterProperties(IDictionary) メソッド

定義

プロパティ グリッドの表示に対してプロパティの削除または追加を行ったり、または、関連するコントロールのプロパティをシャドウするために、デザイナーによって使用されます。

protected:
 override void PreFilterProperties(System::Collections::IDictionary ^ properties);
protected override void PreFilterProperties (System.Collections.IDictionary properties);
override this.PreFilterProperties : System.Collections.IDictionary -> unit
Protected Overrides Sub PreFilterProperties (properties As IDictionary)

パラメーター

properties
IDictionary

追加されたプロパティおよびシャドウ プロパティの IDictionary を実装するコレクション。

次のコード例は、 クラスから継承されたクラスのメソッドをオーバーライド PreFilterProperties して、デザイン時に クラスから ObjectDataSourceDesigner 派生したコントロールの Properties グリッドを変更する方法を ObjectDataSource 示しています。 この例では、 プロパティを NamingContainer[プロパティ ] グリッドに表示します。

// Shadow the control properties with design-time properties.
protected override void PreFilterProperties(IDictionary properties)
{
    // Call the base method first.
    base.PreFilterProperties(properties);

    // Make the NamingContainer visible in the Properties grid.
    PropertyDescriptor selectProp =
        (PropertyDescriptor)properties["NamingContainer"];
    properties["NamingContainer"] =
        TypeDescriptor.CreateProperty(selectProp.ComponentType,
            selectProp, BrowsableAttribute.Yes);
} // PreFilterProperties
' Shadow the control properties with design-time properties.
Protected Overrides Sub PreFilterProperties( _
    ByVal properties As IDictionary)

    ' Call the base method first.
    MyBase.PreFilterProperties(properties)

    ' Make the NamingContainer visible in the Properties grid.
    Dim selectProp As PropertyDescriptor = _
        CType(properties("NamingContainer"), PropertyDescriptor)
    properties("NamingContainer") = _
        TypeDescriptor.CreateProperty(selectProp.ComponentType, _
            selectProp, BrowsableAttribute.Yes)
End Sub

注釈

コントロール デザイナーは、 メソッドから派生したメソッドを ComponentDesigner.PreFilterProperties 使用して、デザイナーが実装する対応するデザイン時プロパティを使用してさまざまなコントロール プロパティをシャドウし、プロパティを [プロパティ ] グリッドにプロパティを追加または削除します。

メソッドはPreFilterProperties、関連付けられたObjectDataSourceコントロールの プロパティと SelectMethod プロパティをシャドウTypeNameするデザイン時プロパティを作成し、ビジュアル デザイナーの [プロパティ] グリッドに表示されるようにします。

注意 (継承者)

メソッドを PreFilterProperties(IDictionary) オーバーライドして、デザイン時プロパティ コレクションのプロパティにプロパティを追加したり、プロパティの属性を変更したりします。 他の処理を実行する前に、 PreFilterProperties(IDictionary) 必ず基本メソッドを呼び出してください。

適用対象

こちらもご覧ください