DataGridDesigner クラス

定義

DataGrid Web サーバー コントロールのデザイン時の動作を拡張します。

public ref class DataGridDesigner : System::Web::UI::Design::WebControls::BaseDataListDesigner
public class DataGridDesigner : System.Web.UI.Design.WebControls.BaseDataListDesigner
[System.Web.UI.Design.SupportsPreviewControl(true)]
public class DataGridDesigner : System.Web.UI.Design.WebControls.BaseDataListDesigner
type DataGridDesigner = class
    inherit BaseDataListDesigner
[<System.Web.UI.Design.SupportsPreviewControl(true)>]
type DataGridDesigner = class
    inherit BaseDataListDesigner
Public Class DataGridDesigner
Inherits BaseDataListDesigner
継承
属性

次のコード例では、 DataGridDesigner クラスを拡張する方法を示します。 このコードは、DataGrid コントロールがデザイン サーフェイスにレンダリングされるときに、CellPaddingBorderWidth、およびBorderColorプロパティをカスタマイズするために、GetDesignTimeHtml メソッドをオーバーライドします。

Imports System.Diagnostics
Imports System.ComponentModel
Imports System.Drawing
Imports System.Web.UI.Design.WebControls
Imports System.Web.UI.WebControls

Namespace Examples.AspNet

    ' Create a designer class for the SimpleDataList class.
    <System.Security.Permissions.SecurityPermission( _
    System.Security.Permissions.SecurityAction.Demand, _
    Flags:=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)> _
    Public Class SimpleDataListDesigner
        Inherits DataListDesigner

        Private simpleList As SimpleDataList


        ' Override the GetDesignTimeHtml method to add style to the control
        ' on the design surface.
        Public Overrides Function GetDesignTimeHtml() As String
            ' Cast the control to the Component property of the designer.
            simpleList = CType(Component, SimpleDataList)

            Dim designTimeHtml As String = Nothing

            ' Create variables to hold current property values.
            Dim oldBorderWidth As Unit = simpleList.BorderWidth
            Dim oldBorderColor As Color = simpleList.BorderColor

            ' Set the properties and generate the design-time HTML.
            If (simpleList.Enabled) Then
                Try
                    simpleList.BorderWidth = Unit.Point(5)
                    simpleList.BorderColor = Color.Purple
                    designTimeHtml = MyBase.GetDesignTimeHtml()

                    ' Call the GetErrorDesignTimeHtml method if an
                    ' exception occurs.
                Catch ex As Exception
                    designTimeHtml = GetErrorDesignTimeHtml(ex)

                    ' Return the properties to their original settings.
                Finally
                    simpleList.BorderWidth = oldBorderWidth
                    simpleList.BorderColor = oldBorderColor
                End Try
                ' If the list is not enabled, call the GetEmptyDesignTimeHtml
                ' method.
            Else
                designTimeHtml = GetEmptyDesignTimeHtml()
            End If

            Return designTimeHtml

        End Function

        Protected Overrides Function GetEmptyDesignTimeHtml() As String
            Dim emptyText As String

            ' Check the CanEnterTemplateMode property to
            ' specify which text to display if ItemTemplate 
            ' does not contain a value.
            If CanEnterTemplateMode Then
                emptyText = _
                    "<b>Either the Enabled property value is false " + _
                    "or you need to set the ItemTemplate for this " + _
                    "control.<br>Right-click to edit templates.</b>"
            Else
                emptyText = _
                    "<b>You cannot edit templates in this view.<br>" + _
                    "Switch to HTML view to define the ItemTemplate.</b>"
            End If

            Return CreatePlaceHolderDesignTimeHtml(emptyText)
        End Function

        ' Generate HTML to indicate that an error has occurred.
        Protected Overrides Function GetErrorDesignTimeHtml(ByVal exc As _
            Exception) As String

            Return CreatePlaceHolderDesignTimeHtml( _
                "<b>An error occurred</b>.<br>Check to ensure that all " + _
                "properties are valid.")
        End Function


        ' Override the Initialize method to ensure that
        ' only an instance of the SimpleDataList class is
        ' used by this designer class.
        Public Overrides Sub Initialize(ByVal component As IComponent)
            simpleList = CType(component, SimpleDataList)

            If IsNothing(simpleList) Then
                Throw New ArgumentException("Must be a SimpleDataList.", "component")
            End If

            MyBase.Initialize(component)
        End Sub
    End Class
End Namespace

次の例では、 DesignerAttribute 属性を使用してデザイナーを DataGrid コントロールに関連付ける方法を示します。

' Override the Initialize method to ensure that
' only an instance of the SimpleDataList class is
' used by this designer class.
Public Overrides Sub Initialize(ByVal component As IComponent)
    simpleList = CType(component, SimpleDataList)

    If IsNothing(simpleList) Then
        Throw New ArgumentException("Must be a SimpleDataList.", "component")
    End If

    MyBase.Initialize(component)
End Sub

コンストラクター

名前 説明
DataGridDesigner()

DataGridDesigner クラスの新しいインスタンスを初期化します。

プロパティ

名前 説明
ActionLists

このデザイナーのデザイナー アクション リスト コレクションを取得します。

(継承元 BaseDataListDesigner)
ActiveTemplateEditingFrame
古い.

アクティブなテンプレート編集フレームを取得します。

(継承元 TemplatedControlDesigner)
AllowResize

デザイン時環境でコントロールのサイズを変更できるかどうかを示す値を取得します。

(継承元 ControlDesigner)
AssociatedComponents

デザイナーによって管理されるコンポーネントに関連付けられているコンポーネントのコレクションを取得します。

(継承元 ComponentDesigner)
AutoFormats

このデザイナーに関連付けられている DesignerAutoFormatCollection オブジェクトを取得します。

Behavior
古い.

デザイナーに関連付けられている DHTML 動作を取得または設定します。

(継承元 HtmlControlDesigner)
CanEnterTemplateMode

このデザイナーがテンプレートの表示または編集を許可するかどうかを示す値を取得します。

(継承元 TemplatedControlDesigner)
Component

デザイナーが設計しているコンポーネントを取得します。

(継承元 ComponentDesigner)
DataBindings

現在のコントロールのデータ バインディング コレクションを取得します。

(継承元 HtmlControlDesigner)
DataBindingsEnabled

デザイナーがデータ バインディングを許可するかどうかを示す値を取得します。

(継承元 TemplatedControlDesigner)
DataKeyField

関連付けられているコントロールのデータ キー フィールドの値を取得または設定します。

(継承元 BaseDataListDesigner)
DataMember

関連付けられたコントロールのデータ メンバー フィールドの値を取得または設定します。

(継承元 BaseDataListDesigner)
DataSource

関連付けられたコントロールのデータ ソース プロパティの値を取得または設定します。

(継承元 BaseDataListDesigner)
DataSourceDesigner

データ バインディング用にデータ ソースが選択されている場合に、データ ソースのデザイナーを取得します。

(継承元 BaseDataListDesigner)
DataSourceID

デザイナーのバージョンのデータ ソース ID プロパティを取得または設定し、関連付けられているコントロールの対応するプロパティをシャドウするために使用します。

(継承元 BaseDataListDesigner)
DesignerState

デザイン時に関連付けられたコントロールのデータを保持するために使用されるオブジェクトを取得します。

(継承元 ControlDesigner)
DesignerView

関連付けられたコントロールにバインドされているデータ ソースの既定のビューを取得します。

(継承元 BaseDataListDesigner)
DesignTimeElement
古い.

デザイン サーフェイス上の HtmlControlDesigner オブジェクトに関連付けられているコントロールを表すデザイン時オブジェクトを取得します。

(継承元 HtmlControlDesigner)
DesignTimeElementView
古い.

コントロール デザイナーのビュー コントロール オブジェクトを取得します。

(継承元 ControlDesigner)
DesignTimeHtmlRequiresLoadComplete

デザイン時マークアップを表示するために読み込みが完了する必要があるかどうかを示す値を取得します。

(継承元 BaseDataListDesigner)
Expressions

デザイン時の現在のコントロールの式バインドを取得します。

(継承元 HtmlControlDesigner)
HidePropertiesInTemplateMode

コントロールがテンプレート編集モードになったときにコントロールのプロパティを非表示にするかどうかを示す値を取得します。

(継承元 TemplatedControlDesigner)
ID

コントロールの ID 文字列を取得または設定します。

(継承元 ControlDesigner)
InheritanceAttribute

関連付けられているコンポーネントの継承の種類を示す属性を取得します。

(継承元 ComponentDesigner)
Inherited

このコンポーネントが継承されるかどうかを示す値を取得します。

(継承元 ComponentDesigner)
InTemplateMode
古い.

デザイナー ドキュメントがテンプレート モードかどうかを示す値を取得します。

(継承元 TemplatedControlDesigner)
IsDirty
古い.

Web サーバー コントロールが変更済みとしてマークされているかどうかを示す値を取得または設定します。

(継承元 ControlDesigner)
ParentComponent

このデザイナーの親コンポーネントを取得します。

(継承元 ComponentDesigner)
ReadOnly
古い.

コントロールのプロパティがデザイン時に読み取り専用かどうかを示す値を取得または設定します。

(継承元 ControlDesigner)
RootDesigner

関連付けられたコントロールを含む Web フォーム ページのコントロール デザイナーを取得します。

(継承元 ControlDesigner)
ShadowProperties

ユーザー設定をオーバーライドするプロパティ値のコレクションを取得します。

(継承元 ComponentDesigner)
ShouldCodeSerialize
古い.

シリアル化中に、現在のデザイン ドキュメントの分離コード ファイルでコントロールのフィールド宣言を作成するかどうかを示す値を取得または設定します。

(継承元 HtmlControlDesigner)
Tag

関連付けられたコントロールの HTML マークアップ要素を表すオブジェクトを取得します。

(継承元 ControlDesigner)
TemplateGroups

テンプレート定義を含むテンプレート グループのコレクションを取得します。

(継承元 TemplatedControlDesigner)
UsePreviewControl

コントロール デザイナーが一時的なプレビュー コントロールを使用してデザイン時 HTML マークアップを生成するかどうかを示す値を取得します。

(継承元 ControlDesigner)
Verbs

このデザイナーで使用できる動詞のコレクションを取得します。

(継承元 BaseDataListDesigner)
ViewControl

デザイン時の HTML マークアップのプレビューに使用できる Web サーバー コントロールを取得または設定します。

(継承元 ControlDesigner)
ViewControlCreated

デザイン サーフェイスに表示する View コントロールが作成されているかどうかを示す値を取得または設定します。

(継承元 ControlDesigner)
Visible

コントロールがデザイン時に表示されるかどうかを示す値を取得します。

(継承元 ControlDesigner)

メソッド

名前 説明
CreateErrorDesignTimeHtml(String, Exception)

デザイン時に指定した例外エラー メッセージを表示する HTML マークアップを作成します。

(継承元 ControlDesigner)
CreateErrorDesignTimeHtml(String)

デザイン時に指定されたエラー メッセージを表示する HTML マークアップを作成します。

(継承元 ControlDesigner)
CreatePlaceHolderDesignTimeHtml()

コントロールの型と ID を表示する単純な四角形のプレースホルダー表現を提供します。

(継承元 ControlDesigner)
CreatePlaceHolderDesignTimeHtml(String)

コントロールの型と ID、および追加の指定された命令または情報を表示する単純な四角形のプレースホルダー表現を提供します。

(継承元 ControlDesigner)
CreateTemplateEditingFrame(TemplateEditingVerb)
古い.

指定した動詞を使用してテンプレート編集フレームを作成します。

CreateViewControl()

デザイン サーフェイスで表示またはレンダリングするために、関連付けられているコントロールのコピーを返します。

(継承元 ControlDesigner)
Dispose()

ComponentDesignerによって使用されるすべてのリソースを解放します。

(継承元 ComponentDesigner)
Dispose(Boolean)

DataGridDesigner オブジェクトによって使用されるアンマネージ リソースを解放し、必要に応じてマネージド リソースを解放します。

DoDefaultAction()

コンポーネントの既定のイベントのソース コード ファイルにメソッド シグネチャを作成し、ユーザーのカーソルをその場所に移動します。

(継承元 ComponentDesigner)
EnterTemplateMode(ITemplateEditingFrame)
古い.

デザイナーで編集するための特定のテンプレート フレーム オブジェクトを開きます。

(継承元 TemplatedControlDesigner)
Equals(Object)

指定したオブジェクトが現在のオブジェクトと等しいかどうかを判断します。

(継承元 Object)
ExitTemplateMode(Boolean, Boolean, Boolean)
古い.

関連する変更を保存した後、現在アクティブなテンプレート編集フレームを閉じます。

(継承元 TemplatedControlDesigner)
GetBounds()

デザイン サーフェイスに表示されるコントロールの境界を表す四角形の座標を取得します。

(継承元 ControlDesigner)
GetCachedTemplateEditingVerbs()
古い.

デザイナーで使用できるキャッシュされたテンプレート編集動詞を取得します。

GetDesignTimeDataSource(IEnumerable, Int32, Boolean)

デザイン時にデータ ソースとして使用できるオブジェクトを生成します。

(継承元 BaseDataListDesigner)
GetDesignTimeDataSource(Int32, Boolean)

デザイン時にデータ ソースとして使用できるオブジェクトを生成します。

(継承元 BaseDataListDesigner)
GetDesignTimeHtml()

デザイン時に DataGrid コントロールを表すために使用される HTML マークアップを取得します。

GetDesignTimeHtml(DesignerRegionCollection)

コントロールを表示する HTML マークアップを取得し、コレクションに現在のコントロール デザイナー領域を設定します。

(継承元 ControlDesigner)
GetEditableDesignerRegionContent(EditableDesignerRegion)

関連付けられたコントロールのデザイン時ビューの編集可能領域のコンテンツを返します。

(継承元 ControlDesigner)
GetEmptyDesignTimeHtml()

デザイン時に空のテンプレート ベースのコントロールを表すために使用される HTML マークアップを取得します。

GetErrorDesignTimeHtml(Exception)

コントロールのレンダリング中にエラーが発生したときに、指定した例外のデザイン時に表示される HTML マークアップを取得します。

GetHashCode()

既定のハッシュ関数として機能します。

(継承元 Object)
GetPersistenceContent()

デザイン時にコントロールの永続化可能な内部 HTML マークアップを取得します。

(継承元 ControlDesigner)
GetPersistInnerHtml()

関連付けられているサーバー コントロール ランタイム内にあるコンテンツに対して保持するマークアップを取得します。

(継承元 TemplatedControlDesigner)
GetResolvedSelectedDataSource()

特定のデータ メンバーに解決された、関連付けられているコントロール コンテナーからデータ ソース コンポーネントを取得します。

(継承元 BaseDataListDesigner)
GetSelectedDataSource()

関連付けられているコントロール コンテナーからデータ ソース コンポーネントを取得します。

(継承元 BaseDataListDesigner)
GetService(Type)

デザイナーのコンポーネントのデザイン モード サイトから、指定した種類のサービスの取得を試みます。

(継承元 ComponentDesigner)
GetTemplateContainerDataItemProperty(String)
古い.

テンプレート コンテナーのデータ項目プロパティを取得します。

GetTemplateContainerDataSource(String)
古い.

テンプレートのコンテナーのデータ ソースを取得します。

(継承元 BaseDataListDesigner)
GetTemplateContent(ITemplateEditingFrame, String, Boolean)
古い.

テンプレートの内容を取得します。

GetTemplateEditingVerbs()
古い.

デザイナーで使用できるテンプレート編集動詞を取得します。

(継承元 TemplatedControlDesigner)
GetTemplateFromText(String)

指定したテキストからテンプレートを作成します。

(継承元 TemplatedControlDesigner)
GetTemplatePropertyParentType(String)
古い.

指定したテンプレートの親に対応する Type オブジェクトを取得します。

GetTextFromTemplate(ITemplate)

指定したテンプレートを表すテキストの文字列を取得します。

(継承元 TemplatedControlDesigner)
GetType()

現在のインスタンスの Type を取得します。

(継承元 Object)
GetViewRendering()

関連付けられたコントロールのコンテンツと領域のデザイン時マークアップを含むオブジェクトを取得します。

(継承元 ControlDesigner)
Initialize(IComponent)

指定した DataGrid コントロールを使用してデザイナーを初期化します。

InitializeExistingComponent(IDictionary)

既存のコンポーネントを再初期化します。

(継承元 ComponentDesigner)
InitializeNewComponent(IDictionary)

新しく作成されたコンポーネントを初期化します。

(継承元 ComponentDesigner)
InitializeNonDefault()
古い.

既定以外の設定に既に初期化されているインポートされたコンポーネントの設定を初期化します。

(継承元 ComponentDesigner)
Invalidate()

デザイン画面に表示されるコントロールの領域全体を無効にし、コントロール デザイナーにコントロールの再描画を通知します。

(継承元 ControlDesigner)
Invalidate(Rectangle)

デザイン画面に表示されるコントロールの指定された領域を無効にし、コントロール デザイナーにコントロールの再描画を通知します。

(継承元 ControlDesigner)
InvokeGetInheritanceAttribute(ComponentDesigner)

指定したInheritanceAttributeComponentDesignerを取得します。

(継承元 ComponentDesigner)
InvokePropertyBuilder(Int32)

関連付けられているコントロールのコンポーネント エディターを呼び出します。

(継承元 BaseDataListDesigner)
IsPropertyBound(String)
古い.

関連付けられているコントロールの指定したプロパティがデータ バインドされているかどうかを示す値を取得します。

(継承元 ControlDesigner)
Localize(IDesignTimeResourceWriter)

指定されたリソース ライターを使用して、関連付けられているコントロールのローカライズ可能なプロパティをデザイン ホスト内のリソースに保持します。

(継承元 ControlDesigner)
MemberwiseClone()

現在の Objectの簡易コピーを作成します。

(継承元 Object)
OnAutoFormat(Object, EventArgs)
古い.

AutoFormat イベントを処理します。

(継承元 BaseDataListDesigner)
OnAutoFormatApplied(DesignerAutoFormat)

関連付けられたコントロールに自動書式設定スキームが適用されたときに呼び出されます。

(継承元 BaseDataListDesigner)
OnBehaviorAttached()
古い.

動作がデザイナーにアタッチされている場合に、追加の処理を実行する機会を提供します。

(継承元 TemplatedControlDesigner)
OnBehaviorDetaching()
古い.

動作が要素から関連付けを解除したときに呼び出されます。

(継承元 HtmlControlDesigner)
OnBindingsCollectionChanged(String)
古い.

データ バインディング コレクションが変更されたときに呼び出されます。

(継承元 ControlDesigner)
OnClick(DesignerRegionMouseEventArgs)

ユーザーがデザイン時に関連付けられているコントロールをクリックすると、デザイン ホストによって呼び出されます。

(継承元 ControlDesigner)
OnColumnsChanged()

テンプレートの列が変更されたときに呼び出されます。

OnComponentChanged(Object, ComponentChangedEventArgs)

関連付けられたコントロールに変更があったときに呼び出されます。

(継承元 BaseDataListDesigner)
OnComponentChanging(Object, ComponentChangingEventArgs)

関連付けられたコントロールの ComponentChanging イベントを処理するメソッドを表します。

(継承元 ControlDesigner)
OnControlResize()
古い.

デザイン時に、関連付けられている Web サーバー コントロールのサイズがデザイン ホストで変更されたときに呼び出されます。

(継承元 ControlDesigner)
OnDataSourceChanged()

関連付けられたコントロールのデータ ソースが変更されたときに呼び出されます。

(継承元 BaseDataListDesigner)
OnPaint(PaintEventArgs)

CustomPaint値がtrueされている場合、コントロール デザイナーが関連付けられたコントロールをデザイン サーフェイスに描画するときに呼び出されます。

(継承元 ControlDesigner)
OnPropertyBuilder(Object, EventArgs)

プロパティ ビルダー イベントを処理するメソッドを表します。

(継承元 BaseDataListDesigner)
OnSchemaRefreshed()

関連付けられたコントロールのデータ ソースのスキーマが変更されたときに呼び出されます。

(継承元 BaseDataListDesigner)
OnSetComponentDefaults()
古い.

コンポーネントの既定のプロパティを設定します。

(継承元 ComponentDesigner)
OnSetParent()

このデザイナーの親が変更されたときに、追加の処理を実行する機会を提供します。

(継承元 TemplatedControlDesigner)
OnStylesChanged()

関連付けられたコントロールのスタイルが変更されたときに発生する必要がある機能を実装するためにオーバーライドできます。

(継承元 BaseDataListDesigner)
OnTemplateEditingVerbsChanged()

テンプレート編集動詞が変更されたときに呼び出されます。

OnTemplateModeChanged()

テンプレート モードが変更されたときに追加の処理を実行する機会を提供します。

(継承元 TemplatedControlDesigner)
PostFilterAttributes(IDictionary)

デザイナーが、 TypeDescriptorを介して公開する一連の属性の項目を変更または削除できるようにします。

(継承元 ComponentDesigner)
PostFilterEvents(IDictionary)

デザイナーが、 TypeDescriptorを介して公開する一連のイベントの項目を変更または削除できるようにします。

(継承元 ComponentDesigner)
PostFilterProperties(IDictionary)

デザイナーが、 TypeDescriptorを介して公開する一連のプロパティから項目を変更または削除できるようにします。

(継承元 ComponentDesigner)
PreFilterAttributes(IDictionary)

デザイナーが、 TypeDescriptorを介して公開する属性のセットに追加できるようにします。

(継承元 ComponentDesigner)
PreFilterEvents(IDictionary)

コンポーネントの TypeDescriptor オブジェクトのデザイン時に公開されるイベントの一覧を設定します。

(継承元 HtmlControlDesigner)
PreFilterProperties(IDictionary)

デザイナーがプロパティを削除したり、[ プロパティ] グリッド の表示にプロパティを追加したり、関連付けられたコントロールのプロパティをシャドウしたりするために使用されます。

(継承元 BaseDataListDesigner)
RaiseComponentChanged(MemberDescriptor, Object, Object)

このコンポーネントが変更されたことを IComponentChangeService に通知します。

(継承元 ComponentDesigner)
RaiseComponentChanging(MemberDescriptor)

このコンポーネントが変更されようとしていることを IComponentChangeService に通知します。

(継承元 ComponentDesigner)
RaiseResizeEvent()
古い.

OnControlResize() イベントを発生させます。

(継承元 ControlDesigner)
RegisterClone(Object, Object)

複製されたコントロールに内部データを登録します。

(継承元 ControlDesigner)
SaveActiveTemplateEditingFrame()

アクティブなテンプレート編集フレームを保存します。

(継承元 TemplatedControlDesigner)
SetEditableDesignerRegionContent(EditableDesignerRegion, String)

デザイン時にコントロールの編集可能領域のコンテンツを指定します。

(継承元 ControlDesigner)
SetRegionContent(EditableDesignerRegion, String)

コントロールのデザイン時ビューで編集可能な領域のコンテンツを指定します。

(継承元 ControlDesigner)
SetTemplateContent(ITemplateEditingFrame, String, String)
古い.

指定したテンプレートとフレームのコンテンツを設定します。

SetViewFlags(ViewFlags, Boolean)

指定したフラグ値に、指定したビットごとの ViewFlags 列挙体を割り当てます。

(継承元 ControlDesigner)
ToString()

現在のオブジェクトを表す文字列を返します。

(継承元 Object)
UpdateDesignTimeHtml()

デザイン時 HTML を更新します。

(継承元 TemplatedControlDesigner)

明示的なインターフェイスの実装

名前 説明
IDataBindingSchemaProvider.CanRefreshSchema

このメンバーの説明については、 CanRefreshSchemaを参照してください。

(継承元 BaseDataListDesigner)
IDataBindingSchemaProvider.RefreshSchema(Boolean)

このメンバーの説明については、 RefreshSchema(Boolean)を参照してください。

(継承元 BaseDataListDesigner)
IDataBindingSchemaProvider.Schema

このメンバーの説明については、 Schemaを参照してください。

(継承元 BaseDataListDesigner)
IDesignerFilter.PostFilterAttributes(IDictionary)

このメンバーの説明については、 PostFilterAttributes(IDictionary) メソッドを参照してください。

(継承元 ComponentDesigner)
IDesignerFilter.PostFilterEvents(IDictionary)

このメンバーの説明については、 PostFilterEvents(IDictionary) メソッドを参照してください。

(継承元 ComponentDesigner)
IDesignerFilter.PostFilterProperties(IDictionary)

このメンバーの説明については、 PostFilterProperties(IDictionary) メソッドを参照してください。

(継承元 ComponentDesigner)
IDesignerFilter.PreFilterAttributes(IDictionary)

このメンバーの説明については、 PreFilterAttributes(IDictionary) メソッドを参照してください。

(継承元 ComponentDesigner)
IDesignerFilter.PreFilterEvents(IDictionary)

このメンバーの説明については、 PreFilterEvents(IDictionary) メソッドを参照してください。

(継承元 ComponentDesigner)
IDesignerFilter.PreFilterProperties(IDictionary)

このメンバーの説明については、 PreFilterProperties(IDictionary) メソッドを参照してください。

(継承元 ComponentDesigner)
ITreeDesigner.Children

このメンバーの説明については、 Children プロパティを参照してください。

(継承元 ComponentDesigner)
ITreeDesigner.Parent

このメンバーの説明については、 Parent プロパティを参照してください。

(継承元 ComponentDesigner)

適用対象

こちらもご覧ください