다음을 통해 공유


IDesignerFilter 인터페이스

구성 요소 디자이너에서 디자인 타임 환경에 노출될 수 있는 속성, 특성 및 이벤트 설명자가 저장되어 있는 TypeDescriptor의 사전을 디자이너에서 액세스하고 필터링할 수 있도록 인터페이스를 제공합니다.

네임스페이스: System.ComponentModel.Design
어셈블리: System(system.dll)

구문

‘선언
Public Interface IDesignerFilter
‘사용 방법
Dim instance As IDesignerFilter
public interface IDesignerFilter
public interface class IDesignerFilter
public interface IDesignerFilter
public interface IDesignerFilter

설명

IDesignerFilter를 사용하면 TypeDescriptor를 통해 관련된 구성 요소에서 노출되는 속성, 특성 및 이벤트 설명자의 집합을 디자이너에서 필터링할 수 있습니다. Pre으로 시작하는 이 인터페이스의 메서드는 Post로 시작하는 이름의 메서드 바로 앞에서 호출됩니다.

특성, 이벤트 또는 속성 설명자를 추가하려면 PreFilterAttributes, PreFilterEvents 또는 PreFilterProperties 메서드를 사용합니다.

특성, 이벤트 또는 속성 설명자를 변경하거나 제거하려면 PostFilterAttributes, PostFilterEvents 또는 PostFilterProperties 메서드를 사용합니다.

예제

다음 예제에서는 디자인 타임에 디자이너 컨트롤이 선택될 때 속성 창에 디자이너의 속성을 추가하는 PreFilterProperties의 재정의를 보여 줍니다. IDesignerFilter 인터페이스를 사용하는 완전한 디자이너 예제는 ControlDesigner 클래스의 예제를 참조하십시오.

' Adds a property to this designer's control at design time 
' that indicates the outline color to use.
Protected Overrides Sub PreFilterProperties(ByVal properties As System.Collections.IDictionary)
    properties.Add("OutlineColor", TypeDescriptor.CreateProperty(GetType(TestControlDesigner), "OutlineColor", GetType(System.Drawing.Color), Nothing))
End Sub
// Adds a property to this designer's control at design time 
// that indicates the outline color to use.
protected override void PreFilterProperties(System.Collections.IDictionary properties)
{
    properties.Add("OutlineColor", TypeDescriptor.CreateProperty(typeof(ExampleControlDesigner), "OutlineColor", typeof(System.Drawing.Color), null));
}
protected:
   [ReflectionPermission(SecurityAction::Demand, Flags=ReflectionPermissionFlag::MemberAccess)]
   virtual void PreFilterProperties( System::Collections::IDictionary^ properties ) override
   {
      properties->Add( "OutlineColor", TypeDescriptor::CreateProperty( TestControlDesigner::typeid, "OutlineColor", System::Drawing::Color::typeid, nullptr ) );
   }

플랫폼

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에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

참고 항목

참조

IDesignerFilter 멤버
System.ComponentModel.Design 네임스페이스
ITypeDescriptorFilterService
TypeDescriptor 클래스