LoginDesigner 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
비주얼 디자이너에서 디자인 타임에 Login 웹 서버 컨트롤을 지원합니다.
public ref class LoginDesigner : System::Web::UI::Design::WebControls::CompositeControlDesigner
public class LoginDesigner : System.Web.UI.Design.WebControls.CompositeControlDesigner
type LoginDesigner = class
inherit CompositeControlDesigner
Public Class LoginDesigner
Inherits CompositeControlDesigner
- 상속
예제
다음 코드 예제를 확장 하는 방법을 보여 줍니다 합니다 LoginDesigner 클래스에서 파생 되는 컨트롤의 모양을 변경 하는 Login 디자인 타임에 컨트롤입니다.
이 예제에서는 파생 되는 MyLogin
에서 제어를 Login입니다. 합니다 MyLogin
복사본이 Login 제어 합니다. 예제 에서도 파생 됩니다는 MyLoginDesigner
에서 클래스를 LoginDesigner 적용를 DesignerAttribute 특성에 대 한를 MyLoginDesigner
에 MyLogin
컨트롤입니다.
MyLoginDesigner
재정의 PreFilterProperties 메서드를 합니다 NamingContainer 속성에 표시 합니다 속성 디자인 타임에 눈금. 재정의 GetDesignTimeHtml 경우 그 범위가 더 잘 표시 되도록 컨트롤 주변의 파란색 파선된 테두리를 그리는 방법을 BorderStyle 의 속성을 MyLogin
컨트롤은를 NotSet 또는 None 값. 재정의 GetErrorDesignTimeHtml 굵은 빨간색 텍스트로 렌더링 하는 오류 메시지를 포함 하는 자리 표시자에 대 한 태그를 생성 하는 방법입니다.
using System;
using System.Web;
using System.Drawing;
using System.Web.UI.WebControls;
using System.Web.UI.Design.WebControls;
using System.Collections;
using System.ComponentModel;
using System.Security.Permissions;
namespace Examples.CS.WebControls.Design
{
// The MyLogin is a copy of the Login.
[AspNetHostingPermission(SecurityAction.Demand,
Level = AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand,
Level = AspNetHostingPermissionLevel.Minimal)]
[Designer(typeof(Examples.CS.WebControls.Design.MyLoginDesigner))]
public class MyLogin : Login
{
} // MyLogin
// Override members of the LoginDesigner.
[ReflectionPermission(SecurityAction.Demand, Flags=ReflectionPermissionFlag.MemberAccess)]
public class MyLoginDesigner : LoginDesigner
{
// Generate the design-time markup for the control when an error occurs.
protected override string GetErrorDesignTimeHtml(Exception e)
{
// Write the error message text in red, bold.
string errorRendering =
"<span style=\"font-weight:bold; color:Red; \">" +
e.Message + "</span>";
return CreatePlaceHolderDesignTimeHtml(errorRendering);
} // GetErrorDesignTimeHtml
// 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
// Generate the design-time markup.
public override string GetDesignTimeHtml()
{
// Make the control more visible in the designer. If the border
// style is None or NotSet, change the border to a blue dashed line.
MyLogin myLoginCtl = (MyLogin)ViewControl;
string markup = null;
// Check if the border style should be changed.
if (myLoginCtl.BorderStyle == BorderStyle.NotSet ||
myLoginCtl.BorderStyle == BorderStyle.None)
{
BorderStyle oldBorderStyle = myLoginCtl.BorderStyle;
Color oldBorderColor = myLoginCtl.BorderColor;
// Set the design time properties and catch any exceptions.
try
{
myLoginCtl.BorderStyle = BorderStyle.Dashed;
myLoginCtl.BorderColor = Color.Blue;
// Call the base method to generate the markup.
markup = base.GetDesignTimeHtml();
}
catch (Exception ex)
{
markup = GetErrorDesignTimeHtml(ex);
}
finally
{
// It is not necessary to restore the border properties
// to their original values because the ViewControl
// was used to reference the associated control and the
// UsePreviewControl was not overridden.
// myLoginCtl.BorderStyle = oldBorderStyle;
// myLoginCtl.BorderColor = oldBorderColor;
}
}
else
{
// Call the base method to generate the markup.
markup = base.GetDesignTimeHtml();
}
return markup;
} // GetDesignTimeHtml
} // MyLoginDesigner
} // Examples.CS.WebControls.Design
Imports System.Web
Imports System.Drawing
Imports System.Web.UI.WebControls
Imports System.Web.UI.Design.WebControls
Imports System.Collections
Imports System.ComponentModel
Imports System.Security.Permissions
Namespace Examples.VB.WebControls.Design
' The MyLogin is a copy of the Login.
<AspNetHostingPermission(SecurityAction.Demand, _
Level:=AspNetHostingPermissionLevel.Minimal)> _
<AspNetHostingPermission(SecurityAction.InheritanceDemand, _
Level:=AspNetHostingPermissionLevel.Minimal)> _
<Designer(GetType(Examples.VB.WebControls.Design.MyLoginDesigner))> _
Public Class MyLogin
Inherits Login
End Class
' Override members of the LoginDesigner.
<ReflectionPermission(SecurityAction.Demand, Flags:=ReflectionPermissionFlag.MemberAccess)> _
Public Class MyLoginDesigner
Inherits LoginDesigner
' Generate the design-time markup for the control when an error occurs.
Protected Overrides Function GetErrorDesignTimeHtml( _
ByVal ex As Exception) As String
' Write the error message text in red, bold.
Dim errorRendering As String = _
"<span style=""font-weight:bold; color:Red; "">" & _
ex.Message & "</span>"
Return CreatePlaceHolderDesignTimeHtml(errorRendering)
End Function ' GetErrorDesignTimeHtml
' 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
' Generate the design-time markup.
Public Overrides Function GetDesignTimeHtml() As String
' Make the control more visible in the designer. If the border
' style is None or NotSet, change the border to a blue dashed line.
Dim myLoginCtl As MyLogin = CType(ViewControl, MyLogin)
Dim markup As String = Nothing
' Check if the border style should be changed.
If (myLoginCtl.BorderStyle = BorderStyle.NotSet Or _
myLoginCtl.BorderStyle = BorderStyle.None) Then
Dim oldBorderStyle As BorderStyle = myLoginCtl.BorderStyle
Dim oldBorderColor As Color = myLoginCtl.BorderColor
' Set the design time properties and catch any exceptions.
Try
myLoginCtl.BorderStyle = BorderStyle.Dashed
myLoginCtl.BorderColor = Color.Blue
' Call the base method to generate the markup.
markup = MyBase.GetDesignTimeHtml()
Catch ex As Exception
markup = GetErrorDesignTimeHtml(ex)
Finally
' It is not necessary to restore the border properties
' to their original values because the ViewControl
' was used to reference the associated control and the
' UsePreviewControl was not overridden.
' myLoginCtl.BorderStyle = oldBorderStyle
' myLoginCtl.BorderColor = oldBorderColor
End Try
Else
' Call the base method to generate the markup.
markup = MyBase.GetDesignTimeHtml()
End If
Return markup
End Function ' GetDesignTimeHtml
End Class
End Namespace ' Examples.VB.WebControls.Design
설명
Login 컨트롤은 호스트 웹 사이트에 로그온 할 수 있는 사용자 인터페이스를 표시 합니다.
비주얼 디자이너에서 소스 뷰에서 디자인 뷰로 전환 하면 태그 소스 코드를 설명 하는 Login 컨트롤을 구문 분석 되 고 디자인 화면에서 컨트롤의 디자인 타임 버전을 만들어집니다. 소스 뷰로 다시 전환 하면 디자인 타임 컨트롤 태그 소스 코드에 유지 되 고 웹 페이지에 대 한 태그를 편집 합니다. 합니다 LoginDesigner 클래스에 대 한 디자인 타임 지원을 제공 합니다 Login 제어 합니다.
LoginDesigner 클래스 속성에는 다음 기능을 제공 합니다.
ActionLists 속성에서 반환을 DesignerActionListCollection 일반적으로에서 파생 된 개체를 포함 하는 개체는 DesignerActionList 디자이너의 상속 트리의 각 수준에 대 한 클래스입니다.
AutoFormats 속성에 표시할 서식 지정 구성표 컬렉션을 반환 합니다 자동 서식 대화 상자.
합니다 TemplateGroups 속성 필드에 대 한 연결 된 템플릿 그룹의 컬렉션을 반환 Login 컨트롤과 최상위 Login 템플릿.
합니다 UsePreviewControl 속성은 항상 반환
true
, 디자이너에 연결 된 임시 복사본을 만들어는 Login 디자인 타임 태그를 생성 합니다.
LoginDesigner 클래스 메서드는 다음 기능을 제공 합니다.
합니다 GetDesignTimeHtml 연결 된 렌더링 하는 데 사용 되는 태그를 반환 하는 메서드 Login 디자인 타임.
GetEditableDesignerRegionContent 메서드는 serialize 된 연결 된 템플릿의 복사본 Login합니다.
합니다 GetErrorDesignTimeHtml 메서드는 연결 된 렌더링 하는 데 사용 되는 태그를 제공 합니다. Login 오류가 발생 했을 때 디자인 타임.
합니다 Initialize 메서드를 보고 편집 하 고 연결 된 디자인 디자이너 준비 Login합니다.
합니다 PreFilterProperties 메서드는 속성을 제거, 추가 속성을 추가 또는 연결 된 속성을 숨기는 데 Login합니다.
합니다 SetEditableDesignerRegionContent 관련 된 영역을 설정 하는 메서드 Login 컨트롤 템플릿의 serialize 된 복사본에서.
생성자
LoginDesigner() |
LoginDesigner 클래스의 새 인스턴스를 초기화합니다. |
속성
ActionLists |
이 디자이너의 디자이너 작업 목록 컬렉션을 가져옵니다. |
AllowResize |
LoginDesigner 컨트롤의 크기 조정을 허용할지 여부를 지정하는 값을 가져오거나 설정합니다. |
AllowResize |
디자인 타임 환경에서 컨트롤의 크기를 조정할 수 있는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ControlDesigner) |
AssociatedComponents |
디자이너가 관리하는 구성 요소와 관련된 구성 요소 컬렉션을 가져옵니다. (다음에서 상속됨 ComponentDesigner) |
AutoFormats |
자동 서식 대화 상자에 표시할 미리 정의된 서식 지정 구성표 컬렉션을 가져옵니다. |
Behavior |
사용되지 않음.
디자이너와 연결된 DHTML 동작을 가져오거나 설정합니다. (다음에서 상속됨 HtmlControlDesigner) |
Component |
이 디자이너에서 디자인하고 있는 구성 요소를 가져옵니다. (다음에서 상속됨 ComponentDesigner) |
DataBindings |
현재 컨트롤에 대한 데이터 바인딩 컬렉션을 가져옵니다. (다음에서 상속됨 HtmlControlDesigner) |
DataBindingsEnabled |
연결된 컨트롤의 포함하는 영역에서 데이터 바인딩을 지원하는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ControlDesigner) |
DesignerState |
디자인 타임에 연결된 컨트롤에 대한 데이터를 유지하는 데 사용되는 개체를 가져옵니다. (다음에서 상속됨 ControlDesigner) |
DesignTimeElement |
사용되지 않음.
디자인 화면에서 HtmlControlDesigner 개체와 연결된 컨트롤을 나타내는 디자인 타임 개체를 가져옵니다. (다음에서 상속됨 HtmlControlDesigner) |
DesignTimeElementView |
사용되지 않음.
컨트롤 디자이너의 뷰-컨트롤 개체를 가져옵니다. (다음에서 상속됨 ControlDesigner) |
DesignTimeHtmlRequiresLoadComplete |
사용되지 않음.
디자인 호스트가 로드를 완료해야 GetDesignTimeHtml 메서드를 호출할 수 있는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ControlDesigner) |
Expressions |
디자인 타임에 현재 컨트롤에 대한 식 바인딩을 가져옵니다. (다음에서 상속됨 HtmlControlDesigner) |
HidePropertiesInTemplateMode |
컨트롤이 템플릿 모드에 있을 때 연결된 컨트롤의 속성이 숨겨지는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ControlDesigner) |
ID |
컨트롤의 ID 문자열을 가져오거나 설정합니다. (다음에서 상속됨 ControlDesigner) |
InheritanceAttribute |
관련된 구성 요소의 상속 형식을 나타내는 특성을 가져옵니다. (다음에서 상속됨 ComponentDesigner) |
Inherited |
이 구성 요소가 상속되었는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ComponentDesigner) |
InTemplateMode |
컨트롤이 디자인 호스트에서 템플릿 보기 또는 편집 모드에 있는지 여부를 나타내는 값을 가져옵니다. InTemplateMode 속성은 읽기 전용입니다. (다음에서 상속됨 ControlDesigner) |
IsDirty |
사용되지 않음.
웹 서버 컨트롤이 변경된 것으로 표시되었는지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ControlDesigner) |
ParentComponent |
이 디자이너의 부모 구성 요소를 가져옵니다. (다음에서 상속됨 ComponentDesigner) |
ReadOnly |
사용되지 않음.
컨트롤의 속성이 디자인 타임에 읽기 전용인지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 ControlDesigner) |
RenderOuterTable |
LoginDesigner 컨트롤에서 외부 테이블 컨테이너를 사용하여 인라인 CSS 스타일 규칙을 적용할지 여부를 지정하는 값을 가져오거나 설정합니다. |
RootDesigner |
연결된 컨트롤을 포함하는 Web Forms 페이지의 컨트롤 디자이너를 가져옵니다. (다음에서 상속됨 ControlDesigner) |
SetTextualDefaultProperty |
비주얼 디자이너에서 디자인 타임에 Login 웹 서버 컨트롤을 지원합니다. (다음에서 상속됨 ComponentDesigner) |
ShadowProperties |
사용자 설정을 재정의하는 속성 값의 컬렉션을 가져옵니다. (다음에서 상속됨 ComponentDesigner) |
ShouldCodeSerialize |
사용되지 않음.
serialize하는 동안 현재 디자인 문서의 코드 숨김 파일에 컨트롤에 대한 필드 선언을 만들지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 HtmlControlDesigner) |
Tag |
연결된 컨트롤의 HTML 태그 요소를 나타내는 개체를 가져옵니다. (다음에서 상속됨 ControlDesigner) |
TemplateGroups |
연결된 컨트롤의 필드에 대한 템플릿 그룹의 컬렉션을 가져옵니다. |
UsePreviewControl |
디자이너에서 디자이너와 연결된 실제 컨트롤이 아닌 임시 복사본을 사용하여 디자인 타임 태그를 생성할 것인지 여부를 나타내는 값을 가져옵니다. |
Verbs |
디자이너와 관련된 구성 요소에서 지원하는 디자인 타임 동사를 가져옵니다. (다음에서 상속됨 ComponentDesigner) |
ViewControl |
디자인 타임 HTML 태그를 미리 보는 데 사용할 수 있는 웹 서버 컨트롤을 가져오거나 설정합니다. (다음에서 상속됨 ControlDesigner) |
ViewControlCreated |
디자인 화면에 표시할 |
Visible |
디자인 타임에 컨트롤이 표시되는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ControlDesigner) |
메서드
CreateChildControls() |
이 CompositeControl 컨트롤의 자식 컨트롤을 만듭니다. (다음에서 상속됨 CompositeControlDesigner) |
CreateErrorDesignTimeHtml(String) |
디자인 타임에 지정된 오류 메시지를 표시할 HTML 태그를 만듭니다. (다음에서 상속됨 ControlDesigner) |
CreateErrorDesignTimeHtml(String, Exception) |
디자인 타임에 지정된 예외 오류 메시지를 표시할 HTML 태그를 만듭니다. (다음에서 상속됨 ControlDesigner) |
CreatePlaceHolderDesignTimeHtml() |
컨트롤의 형식과 ID를 표시하는 간단한 사각형 자리 표시자를 제공합니다. (다음에서 상속됨 ControlDesigner) |
CreatePlaceHolderDesignTimeHtml(String) |
컨트롤의 형식과 ID를 표시하는 간단한 사각형 자리 표시자를 제공하고 추가로 지정된 명령이나 정보도 제공합니다. (다음에서 상속됨 ControlDesigner) |
CreateViewControl() |
디자인 화면에서 보거나 렌더링하는 데 사용할 연결된 컨트롤의 복사본을 반환합니다. (다음에서 상속됨 ControlDesigner) |
Dispose() |
ComponentDesigner에서 사용하는 모든 리소스를 해제합니다. (다음에서 상속됨 ComponentDesigner) |
Dispose(Boolean) |
HtmlControlDesigner 개체에서 사용하는 관리되지 않는 리소스를 해제하고 관리되는 리소스를 선택적으로 해제합니다. (다음에서 상속됨 HtmlControlDesigner) |
DoDefaultAction() |
구성 요소의 기본 이벤트에 대한 소스 코드 파일에 메서드 시그니처를 만들고 해당 위치로 사용자의 커서를 이동합니다. (다음에서 상속됨 ComponentDesigner) |
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
GetBounds() |
디자인 화면에 표시되는 컨트롤의 경계를 나타내는 사각형의 좌표를 검색합니다. (다음에서 상속됨 ControlDesigner) |
GetDesignTimeHtml() |
디자인 타임에 컨트롤을 나타내는 데 사용할 HTML을 가져옵니다. (다음에서 상속됨 CompositeControlDesigner) |
GetDesignTimeHtml(DesignerRegionCollection) |
디자인 타임에, 연결된 컨트롤을 렌더링하는 데 사용되는 태그를 가져와서 디자이너 영역의 컬렉션을 채웁니다. |
GetEditableDesignerRegionContent(EditableDesignerRegion) |
디자인 타임에 연결된 컨트롤을 렌더링하는 데 사용되는 serialize된 템플릿의 복사본을 반환합니다. |
GetEmptyDesignTimeHtml() |
런타임 시 시각적으로 표시되지 않는 웹 서버 컨트롤을 디자인 타임에 나타내는 HTML 태그를 가져옵니다. (다음에서 상속됨 ControlDesigner) |
GetErrorDesignTimeHtml(Exception) |
오류가 발생했을 때 디자인 타임에 연결된 컨트롤을 렌더링하는 데 사용할 태그를 제공합니다. |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetPersistenceContent() |
디자인 타임에 컨트롤의 지속적인 내부 HTML 태그를 검색합니다. (다음에서 상속됨 ControlDesigner) |
GetPersistInnerHtml() |
사용되지 않음.
컨트롤의 지속적인 내부 HTML 태그를 검색합니다. (다음에서 상속됨 ControlDesigner) |
GetService(Type) |
디자이너 구성 요소의 디자인 모드 사이트에서 지정된 서비스 종류를 검색합니다. (다음에서 상속됨 ComponentDesigner) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
GetViewRendering() |
연결된 컨트롤의 내용과 영역에 대한 디자인 타임 태그를 포함하는 개체를 검색합니다. (다음에서 상속됨 ControlDesigner) |
Initialize(IComponent) |
연결된 컨트롤을 표시, 편집 및 디자인할 디자이너를 준비합니다. |
InitializeExistingComponent(IDictionary) |
기존 구성 요소를 다시 초기화합니다. (다음에서 상속됨 ComponentDesigner) |
InitializeNewComponent(IDictionary) |
새로 만들어진 구성 요소를 초기화합니다. (다음에서 상속됨 ComponentDesigner) |
InitializeNonDefault() |
사용되지 않음.
사용되지 않음.
기본값이 아닌 설정으로 이미 초기화되어 가져온 구성 요소의 설정을 초기화합니다. (다음에서 상속됨 ComponentDesigner) |
Invalidate() |
디자인 화면에 표시된 컨트롤의 전체 영역을 무효화하고 컨트롤 디자이너에 컨트롤을 다시 그리도록 신호를 보냅니다. (다음에서 상속됨 ControlDesigner) |
Invalidate(Rectangle) |
디자인 화면에 표시된 컨트롤의 지정된 영역을 무효화하고 컨트롤 디자이너에 컨트롤을 다시 그리도록 신호를 보냅니다. (다음에서 상속됨 ControlDesigner) |
InvokeGetInheritanceAttribute(ComponentDesigner) |
지정된 InheritanceAttribute의 ComponentDesigner를 가져옵니다. (다음에서 상속됨 ComponentDesigner) |
IsPropertyBound(String) |
사용되지 않음.
연결된 컨트롤의 지정된 속성이 데이터 바인딩되는지 여부를 나타내는 값을 검색합니다. (다음에서 상속됨 ControlDesigner) |
Localize(IDesignTimeResourceWriter) |
제공된 리소스 작성기를 사용하여 연결된 컨트롤의 지역화할 수 있는 속성을 디자인 호스트의 리소스에 유지합니다. (다음에서 상속됨 ControlDesigner) |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
OnAutoFormatApplied(DesignerAutoFormat) |
미리 정의된 자동 서식 구성표가 연결된 컨트롤에 적용된 경우 호출됩니다. (다음에서 상속됨 ControlDesigner) |
OnBehaviorAttached() |
컨트롤 디자이너가 동작 개체에 연결될 때 호출됩니다. (다음에서 상속됨 ControlDesigner) |
OnBehaviorDetaching() |
사용되지 않음.
동작이 요소에서 분리될 때 호출됩니다. (다음에서 상속됨 HtmlControlDesigner) |
OnBindingsCollectionChanged(String) |
사용되지 않음.
데이터 바인딩 컬렉션이 변경될 때 호출됩니다. (다음에서 상속됨 ControlDesigner) |
OnClick(DesignerRegionMouseEventArgs) |
사용자가 디자인 타임에 연결된 컨트롤을 클릭하면 디자인 호스트에서 호출됩니다. (다음에서 상속됨 ControlDesigner) |
OnComponentChanged(Object, ComponentChangedEventArgs) |
연결된 컨트롤이 변경될 때 호출됩니다. (다음에서 상속됨 ControlDesigner) |
OnComponentChanging(Object, ComponentChangingEventArgs) |
연결된 컨트롤의 ComponentChanging 이벤트를 처리할 메서드를 나타냅니다. (다음에서 상속됨 ControlDesigner) |
OnControlResize() |
사용되지 않음.
디자인 타임에 디자인 호스트에서 연결된 웹 서버 컨트롤의 크기가 조정되었을 때 호출됩니다. (다음에서 상속됨 ControlDesigner) |
OnPaint(PaintEventArgs) |
CustomPaint 값이 |
OnSetComponentDefaults() |
사용되지 않음.
사용되지 않음.
구성 요소의 기본 속성을 설정합니다. (다음에서 상속됨 ComponentDesigner) |
OnSetParent() |
해당 컨트롤이 부모 컨트롤에 연결될 때 추가적인 처리를 수행할 수 있도록 합니다. (다음에서 상속됨 HtmlControlDesigner) |
PostFilterAttributes(IDictionary) |
디자이너에서 TypeDescriptor를 통해 노출되는 특성 집합의 항목을 변경하거나 제거하도록 합니다. (다음에서 상속됨 ComponentDesigner) |
PostFilterEvents(IDictionary) |
디자이너에서 TypeDescriptor를 통해 노출되는 이벤트 집합의 항목을 변경하거나 제거하도록 합니다. (다음에서 상속됨 ComponentDesigner) |
PostFilterProperties(IDictionary) |
디자이너에서 TypeDescriptor를 통해 노출되는 속성 집합의 항목을 변경하거나 제거하도록 합니다. (다음에서 상속됨 ComponentDesigner) |
PreFilterAttributes(IDictionary) |
디자이너에서 TypeDescriptor를 통해 노출되는 특성 집합에 항목을 추가하도록 합니다. (다음에서 상속됨 ComponentDesigner) |
PreFilterEvents(IDictionary) |
디자인 타임에 구성 요소의 TypeDescriptor 개체에 대해 노출되는 이벤트의 목록을 설정합니다. (다음에서 상속됨 HtmlControlDesigner) |
PreFilterProperties(IDictionary) |
디자이너에서 속성 표에 있는 속성을 제거 또는 추가하거나 연결된 컨트롤의 속성을 숨기는 데 사용됩니다. |
RaiseComponentChanged(MemberDescriptor, Object, Object) |
IComponentChangeService에 이 구성 요소가 변경되었음을 알립니다. (다음에서 상속됨 ComponentDesigner) |
RaiseComponentChanging(MemberDescriptor) |
IComponentChangeService에 이 구성 요소가 변경될 예정임을 알립니다. (다음에서 상속됨 ComponentDesigner) |
RaiseResizeEvent() |
사용되지 않음.
OnControlResize() 이벤트를 발생시킵니다. (다음에서 상속됨 ControlDesigner) |
RegisterClone(Object, Object) |
복제된 컨트롤의 내부 데이터를 등록합니다. (다음에서 상속됨 ControlDesigner) |
SetEditableDesignerRegionContent(EditableDesignerRegion, String) |
serialize된 컨트롤 템플릿 복사본의 연결된 컨트롤의 영역을 설정합니다. |
SetRegionContent(EditableDesignerRegion, String) |
컨트롤의 디자인 타임 뷰에서 편집 가능한 영역의 내용을 지정합니다. (다음에서 상속됨 ControlDesigner) |
SetViewFlags(ViewFlags, Boolean) |
지정된 비트 ViewFlags 열거형을 주어진 플래그 값에 할당합니다. (다음에서 상속됨 ControlDesigner) |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다. (다음에서 상속됨 Object) |
UpdateDesignTimeHtml() |
GetDesignTimeHtml 메서드를 호출하여 연결된 웹 서버 컨트롤에 대한 디자인 타임 HTML 태그를 새로 고칩니다. (다음에서 상속됨 ControlDesigner) |
명시적 인터페이스 구현
적용 대상
추가 정보
.NET