HierarchicalDataBoundControlDesigner 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
HierarchicalDataBoundControl에 대한 디자이너 호스트에서 디자인 타임 지원을 제공합니다.
public ref class HierarchicalDataBoundControlDesigner : System::Web::UI::Design::WebControls::BaseDataBoundControlDesigner
public class HierarchicalDataBoundControlDesigner : System.Web.UI.Design.WebControls.BaseDataBoundControlDesigner
type HierarchicalDataBoundControlDesigner = class
inherit BaseDataBoundControlDesigner
Public Class HierarchicalDataBoundControlDesigner
Inherits BaseDataBoundControlDesigner
- 상속
-
HierarchicalDataBoundControlDesigner
- 파생
예제
다음 코드 예제를 확장 하는 방법을 보여 줍니다 합니다 HierarchicalDataBoundControlDesigner 클래스에서 파생 되는 컨트롤의 모양을 변경 하는 HierarchicalDataBoundControl 디자인 타임에 컨트롤입니다.
이 예제에서는 파생 되는 MyHierarchicalDataBoundControl
에서 클래스를 HierarchicalDataBoundControl입니다. 합니다 MyHierarchicalDataBoundControl
클래스는 단순히 복사는 HierarchicalDataBoundControl합니다. 예제 에서도 파생 됩니다는 MyHierarchicalDataBoundControlDesigner
에서 클래스를 HierarchicalDataBoundControlDesigner 클래스 및 위치를 DesignerAttribute 개체에 대 한를 MyHierarchicalDataBoundControlDesigner
에 MyHierarchicalDataBoundControl
클래스입니다.
MyHierarchicalDataBoundControlDesigner
재정의 PreFilterProperties 메서드를 합니다 NamingContainer 속성에 표시 합니다 속성 디자인 타임에 눈금. 디자인 타임 태그가 또는 인 경우 또는 Empty디자인 타임 태그 null
가 빈 <span>
블록인 경우(즉, ...>
및 </span>
태그 사이에 내부 태그가 없는 경우) 자리 표시자에 대한 태그를 생성하는 메서드를 재정 GetDesignTimeHtml 의 <span
합니다.
using System;
using System.IO;
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 MyHierarchicalDataBoundControl is a copy of the
// HierarchicalDataBoundControl.
[AspNetHostingPermission(SecurityAction.Demand,
Level = AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand,
Level = AspNetHostingPermissionLevel.Minimal)]
[Designer(typeof(Examples.CS.WebControls.Design.
MyHierarchicalDataBoundControlDesigner))]
public class MyHierarchicalDataBoundControl :
HierarchicalDataBoundControl
{
} // MyHierarchicalDataBoundControl
// Override members of the ierarchicalDataBoundControlDesigner.
[ReflectionPermission(SecurityAction.Demand, Flags=ReflectionPermissionFlag.MemberAccess)]
public class MyHierarchicalDataBoundControlDesigner :
HierarchicalDataBoundControlDesigner
{
const string bracketClose = ">";
const string spanOpen = "<SPAN";
const string spanClose = "</SPAN>";
// Return the markup for a placeholder, if the inner markup is empty.
// For brevity, the code that is used to detect embedded white_space
// in the tags is not shown.
public override string GetDesignTimeHtml()
{
// Get the design-time markup from the base method.
string markup = base.GetDesignTimeHtml();
// If the markup is null or empty, return the markup
// for the placeholder.
if(string.IsNullOrEmpty(markup))
return GetEmptyDesignTimeHtml();
// Make the markup uniform case so that the IndexOf will work.
string MARKUP = markup.ToUpper();
int charX;
// Look for a <span ...> tag.
if ((charX = MARKUP.IndexOf(spanOpen)) >= 0)
{
// Find closing bracket of span open tag.
if ((charX = MARKUP.IndexOf(bracketClose,
charX+spanOpen.Length)) >= 0)
{
// If the inner markup of <span ...></span> is empty,
// return the markup for a placeholder.
if (string.Compare(MARKUP, charX + 1, spanClose, 0,
spanClose.Length) == 0)
return GetEmptyDesignTimeHtml();
}
}
// Return the original markup, if the inner markup is not empty.
return markup;
}
// Shadow the control properties with design-time properties.
protected override void PreFilterProperties(IDictionary properties)
{
string namingContainer = "NamingContainer";
// Call the base method first.
base.PreFilterProperties(properties);
// Make the NamingContainery visible in the Properties grid.
PropertyDescriptor selectProp =
(PropertyDescriptor)properties[namingContainer];
properties[namingContainer] =
TypeDescriptor.CreateProperty(selectProp.ComponentType,
selectProp, BrowsableAttribute.Yes);
} // PreFilterProperties
} // MyHierarchicalDataBoundControlDesigner
} // Examples.CS.WebControls.Design
Imports System.IO
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 MyHierarchicalDataBoundControl is a copy of the
' HierarchicalDataBoundControl.
<AspNetHostingPermission(SecurityAction.Demand, _
Level:=AspNetHostingPermissionLevel.Minimal)> _
<AspNetHostingPermission(SecurityAction.InheritanceDemand, _
Level:=AspNetHostingPermissionLevel.Minimal)> _
<Designer(GetType(Examples.VB.WebControls.Design. _
MyHierarchicalDataBoundControlDesigner))> _
Public Class MyHierarchicalDataBoundControl
Inherits HierarchicalDataBoundControl
End Class
' Override members of the HierarchicalDataBoundControlDesigner.
<ReflectionPermission(SecurityAction.Demand, Flags:=ReflectionPermissionFlag.MemberAccess)> _
Public Class MyHierarchicalDataBoundControlDesigner
Inherits HierarchicalDataBoundControlDesigner
Private Const bracketClose As String = ">"
Private Const spanOpen As String = "<SPAN"
Private Const spanClose As String = "</SPAN>"
' Return the markup for a placeholder, if the inner markup is empty.
' For brevity, the code that is used to detect embedded white_space
' in the tags is not shown.
Public Overrides Function GetDesignTimeHtml() As String
' Get the design-time markup from the base method.
Dim markup As String = MyBase.GetDesignTimeHtml()
' If the markup is null or empty, return the markup
' for the placeholder.
If String.IsNullOrEmpty(markup) Then
Return GetEmptyDesignTimeHtml()
End If
' Make the markup uniform case so that the IndexOf will work.
Dim markupUC As String = markup.ToUpper()
Dim charX As Integer
' Look for a <span ...> tag.
charX = markupUC.IndexOf(spanOpen)
If charX >= 0 Then
' Find closing bracket of span open tag.
charX = markupUC.IndexOf(bracketClose, charX + spanOpen.Length)
If charX >= 0 Then
' If the inner markup of <span ...></span> is empty,
' return the markup for a placeholder.
If String.Compare(markupUC, charX + 1, _
spanClose, 0, spanClose.Length) = 0 Then
Return GetEmptyDesignTimeHtml()
End If
End If
End If
' Return the original markup, if the inner markup is not empty.
Return markup
End Function ' GetDesignTimeHtml
' Shadow the control properties with design-time properties.
Protected Overrides Sub PreFilterProperties( _
ByVal properties As IDictionary)
Dim namingContainer As String = "NamingContainer"
' Call the base method first.
MyBase.PreFilterProperties(properties)
' Make the NamingContainery visible in the Properties grid.
Dim selectProp As PropertyDescriptor = _
CType(properties(namingContainer), PropertyDescriptor)
properties(namingContainer) = _
TypeDescriptor.CreateProperty(selectProp.ComponentType, _
selectProp, BrowsableAttribute.Yes)
End Sub
End Class
End Namespace ' Examples.VB.WebControls.Design
설명
디자이너 호스트에서 사용자가 소스 뷰에서 디자인 뷰로 전환 하는 경우 태그 소스 코드를 설명 하는 컨트롤에서 파생 되는 HierarchicalDataBoundControl 추상 클래스는 구문 분석 하 고 디자인 화면에서 컨트롤의 디자인 타임 버전을 만들어집니다. 사용자가 소스 뷰로 다시 전환, 디자인 타임 컨트롤 태그 소스 코드에 유지 되 고 웹 페이지에 대 한 태그를 편집 합니다. 합니다 HierarchicalDataBoundControlDesigner 클래스에서 파생 되는 컨트롤에 대 한 디자인 타임 지원을 제공 합니다 HierarchicalDataBoundControl 디자이너 호스트에서입니다.
HierarchicalDataBoundControlDesigner 클래스 속성에는 다음 기능을 제공 합니다.
ActionLists 속성에서 반환을 DesignerActionListCollection 일반적으로에서 파생 된 개체를 포함 하는 개체는 DesignerActionList 디자이너의 상속 트리의 각 수준에 대 한 클래스입니다.
DataSourceDesigner 속성 정의 된 경우 데이터 원본 디자이너에 액세스를 제공 합니다.
DesignerView 속성에 연결된 된 컨트롤에 바인딩되는 데이터 소스의 기본 뷰를 가져옵니다.
UseDataSourcePickerActionList 속성 컨트롤 선택 하 고 데이터 원본 만들기에 대 한 기본 작업 목록을 렌더링 해야 하는지 여부를 결정 합니다.
HierarchicalDataBoundControlDesigner 클래스 메서드는 다음 기능을 제공 합니다.
ConnectToDataSource 메서드는 현재 데이터 소스에 연결 하는 데 필요한 작업을 수행 합니다.
CreateDataSource 메서드는 연결된 된 컨트롤에 대 한 새 데이터 원본을 만듭니다.
DataBind 메서드에서 파생 되는 연결된 된 컨트롤을 바인딩하는 HierarchicalDataBoundControl 디자인 타임 데이터 원본에 대 한 클래스입니다.
DisconnectFromDataSource 메서드는 현재 데이터 소스에서 분리 하는 데 필요한 작업을 수행 합니다.
GetDesignTimeDataSource 메서드는 연결된 된 컨트롤에 대 한 디자인 타임에 사용할 수 있는 데이터 소스를 가져옵니다.
GetSampleDataSource 메서드는 연결된 된 컨트롤에 대 한 디자인 타임에 사용할 수 있는 샘플 데이터 소스를 생성 합니다.
합니다 PreFilterProperties 메서드는 속성을 제거 또는 추가 하거나에서 파생 되는 연결된 된 컨트롤의 속성을 숨기는 데는 HierarchicalDataBoundControl 클래스입니다.
생성자
HierarchicalDataBoundControlDesigner() |
HierarchicalDataBoundControlDesigner 클래스의 새 인스턴스를 초기화합니다. |
속성
ActionLists |
이 디자이너의 디자이너 작업 목록 컬렉션을 가져옵니다. |
AllowResize |
디자인 타임 환경에서 컨트롤의 크기를 조정할 수 있는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ControlDesigner) |
AssociatedComponents |
디자이너가 관리하는 구성 요소와 관련된 구성 요소 컬렉션을 가져옵니다. (다음에서 상속됨 ComponentDesigner) |
AutoFormats |
디자인 타임에 연결된 컨트롤에 대한 자동 서식 대화 상자에 표시할 미리 정의된 자동 서식 지정 구성표의 컬렉션을 가져옵니다. (다음에서 상속됨 ControlDesigner) |
Behavior |
사용되지 않음.
디자이너와 연결된 DHTML 동작을 가져오거나 설정합니다. (다음에서 상속됨 HtmlControlDesigner) |
Component |
이 디자이너에서 디자인하고 있는 구성 요소를 가져옵니다. (다음에서 상속됨 ComponentDesigner) |
DataBindings |
현재 컨트롤에 대한 데이터 바인딩 컬렉션을 가져옵니다. (다음에서 상속됨 HtmlControlDesigner) |
DataBindingsEnabled |
연결된 컨트롤의 포함하는 영역에서 데이터 바인딩을 지원하는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ControlDesigner) |
DataSource |
연결된 컨트롤에 대한 DataSource 속성의 값을 가져오거나 설정합니다. (다음에서 상속됨 BaseDataBoundControlDesigner) |
DataSourceDesigner |
데이터 바인딩할 데이터 소스가 선택된 경우 해당 디자이너에 액세스할 수 있도록 합니다. |
DataSourceID |
내부 DataSourceID 개체의 BaseDataBoundControl 속성 값을 가져오거나 설정합니다. (다음에서 상속됨 BaseDataBoundControlDesigner) |
DesignerState |
디자인 타임에 연결된 컨트롤에 대한 데이터를 유지하는 데 사용되는 개체를 가져옵니다. (다음에서 상속됨 ControlDesigner) |
DesignerView |
연결된 컨트롤에 바인딩된 데이터 소스의 기본 뷰를 가져옵니다. |
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) |
RootDesigner |
연결된 컨트롤을 포함하는 Web Forms 페이지의 컨트롤 디자이너를 가져옵니다. (다음에서 상속됨 ControlDesigner) |
SetTextualDefaultProperty |
HierarchicalDataBoundControl에 대한 디자이너 호스트에서 디자인 타임 지원을 제공합니다. (다음에서 상속됨 ComponentDesigner) |
ShadowProperties |
사용자 설정을 재정의하는 속성 값의 컬렉션을 가져옵니다. (다음에서 상속됨 ComponentDesigner) |
ShouldCodeSerialize |
사용되지 않음.
serialize하는 동안 현재 디자인 문서의 코드 숨김 파일에 컨트롤에 대한 필드 선언을 만들지 여부를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 HtmlControlDesigner) |
Tag |
연결된 컨트롤의 HTML 태그 요소를 나타내는 개체를 가져옵니다. (다음에서 상속됨 ControlDesigner) |
TemplateGroups |
하나 이상의 템플릿 정의가 포함된 템플릿 그룹의 컬렉션을 가져옵니다. (다음에서 상속됨 ControlDesigner) |
UseDataSourcePickerActionList |
컨트롤에서 데이터 소스 ID 드롭다운 목록과 관련 작업이 포함된 기본 작업 목록을 렌더링해야 하는지 여부를 나타내는 값을 가져옵니다. |
UsePreviewControl |
컨트롤 디자이너에서 임시 미리 보기 컨트롤을 사용하여 디자인 타임 HTML 태그를 생성할지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ControlDesigner) |
Verbs |
디자이너와 관련된 구성 요소에서 지원하는 디자인 타임 동사를 가져옵니다. (다음에서 상속됨 ComponentDesigner) |
ViewControl |
디자인 타임 HTML 태그를 미리 보는 데 사용할 수 있는 웹 서버 컨트롤을 가져오거나 설정합니다. (다음에서 상속됨 ControlDesigner) |
ViewControlCreated |
디자인 화면에 표시할 |
Visible |
디자인 타임에 컨트롤이 표시되는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 ControlDesigner) |
메서드
ConnectToDataSource() |
현재 데이터 소스에 연결하는 데 필요한 작업을 수행합니다. |
CreateDataSource() |
연결된 컨트롤에 대한 새 데이터 소스를 만듭니다. |
CreateErrorDesignTimeHtml(String) |
디자인 타임에 지정된 오류 메시지를 표시할 HTML 태그를 만듭니다. (다음에서 상속됨 ControlDesigner) |
CreateErrorDesignTimeHtml(String, Exception) |
디자인 타임에 지정된 예외 오류 메시지를 표시할 HTML 태그를 만듭니다. (다음에서 상속됨 ControlDesigner) |
CreatePlaceHolderDesignTimeHtml() |
컨트롤의 형식과 ID를 표시하는 간단한 사각형 자리 표시자를 제공합니다. (다음에서 상속됨 ControlDesigner) |
CreatePlaceHolderDesignTimeHtml(String) |
컨트롤의 형식과 ID를 표시하는 간단한 사각형 자리 표시자를 제공하고 추가로 지정된 명령이나 정보도 제공합니다. (다음에서 상속됨 ControlDesigner) |
CreateViewControl() |
디자인 화면에서 보거나 렌더링하는 데 사용할 연결된 컨트롤의 복사본을 반환합니다. (다음에서 상속됨 ControlDesigner) |
DataBind(BaseDataBoundControl) |
연결된 컨트롤을 디자인 타임 데이터 원본에 바인딩합니다. |
DisconnectFromDataSource() |
현재 데이터 소스의 연결을 끊는 데 필요한 작업을 수행합니다. |
Dispose() |
ComponentDesigner에서 사용하는 모든 리소스를 해제합니다. (다음에서 상속됨 ComponentDesigner) |
Dispose(Boolean) |
BaseDataBoundControlDesigner 개체에서 사용하는 관리되지 않는 리소스를 해제하고 관리되는 리소스를 선택적으로 해제합니다. (다음에서 상속됨 BaseDataBoundControlDesigner) |
DoDefaultAction() |
구성 요소의 기본 이벤트에 대한 소스 코드 파일에 메서드 시그니처를 만들고 해당 위치로 사용자의 커서를 이동합니다. (다음에서 상속됨 ComponentDesigner) |
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
GetBounds() |
디자인 화면에 표시되는 컨트롤의 경계를 나타내는 사각형의 좌표를 검색합니다. (다음에서 상속됨 ControlDesigner) |
GetDesignTimeDataSource() |
디자인 타임 시 연결된 컨트롤에 사용할 수 있는 데이터 소스를 가져옵니다. |
GetDesignTimeHtml() |
디자인 타임 시 컨트롤을 렌더링하는 데 사용되는 태그를 생성합니다. (다음에서 상속됨 BaseDataBoundControlDesigner) |
GetDesignTimeHtml(DesignerRegionCollection) |
컨트롤을 표시하는 HTML 태그를 가져와서 현재 컨트롤 디자이너 영역을 사용하여 컬렉션을 채웁니다. (다음에서 상속됨 ControlDesigner) |
GetEditableDesignerRegionContent(EditableDesignerRegion) |
연결된 컨트롤의 디자인 타임 뷰에서 편집 가능한 영역의 내용을 반환합니다. (다음에서 상속됨 ControlDesigner) |
GetEmptyDesignTimeHtml() |
컨트롤이 비어 있거나 데이터 소스를 검색할 수 없는 경우 디자인 타임에 컨트롤을 렌더링하는 데 사용되는 태그를 제공합니다. (다음에서 상속됨 BaseDataBoundControlDesigner) |
GetErrorDesignTimeHtml(Exception) |
오류가 발생했을 때 디자인 타임에 컨트롤을 렌더링하는 데 사용하는 태그를 제공합니다. (다음에서 상속됨 BaseDataBoundControlDesigner) |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetPersistenceContent() |
디자인 타임에 컨트롤의 지속적인 내부 HTML 태그를 검색합니다. (다음에서 상속됨 ControlDesigner) |
GetPersistInnerHtml() |
사용되지 않음.
컨트롤의 지속적인 내부 HTML 태그를 검색합니다. (다음에서 상속됨 ControlDesigner) |
GetSampleDataSource() |
디자인 타임에 연결된 컨트롤에 사용할 수 있는 샘플 데이터 소스를 생성합니다. |
GetService(Type) |
디자이너 구성 요소의 디자인 모드 사이트에서 지정된 서비스 종류를 검색합니다. (다음에서 상속됨 ComponentDesigner) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
GetViewRendering() |
연결된 컨트롤의 내용과 영역에 대한 디자인 타임 태그를 포함하는 개체를 검색합니다. (다음에서 상속됨 ControlDesigner) |
Initialize(IComponent) |
연결된 컨트롤을 표시, 편집 및 디자인할 디자이너를 준비합니다. (다음에서 상속됨 BaseDataBoundControlDesigner) |
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) |
OnDataSourceChanged(Boolean) |
연결된 BaseDataBoundControl 개체의 데이터 소스가 변경될 때 호출됩니다. (다음에서 상속됨 BaseDataBoundControlDesigner) |
OnPaint(PaintEventArgs) |
CustomPaint 값이 |
OnSchemaRefreshed() |
연결된 BaseDataBoundControl 개체의 데이터 소스에 새 스키마가 로드될 때 호출됩니다. (다음에서 상속됨 BaseDataBoundControlDesigner) |
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) |
디자인 타임에 컨트롤의 편집 가능한 영역에 대한 내용을 지정합니다. (다음에서 상속됨 ControlDesigner) |
SetRegionContent(EditableDesignerRegion, String) |
컨트롤의 디자인 타임 뷰에서 편집 가능한 영역의 내용을 지정합니다. (다음에서 상속됨 ControlDesigner) |
SetViewFlags(ViewFlags, Boolean) |
지정된 비트 ViewFlags 열거형을 주어진 플래그 값에 할당합니다. (다음에서 상속됨 ControlDesigner) |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다. (다음에서 상속됨 Object) |
UpdateDesignTimeHtml() |
GetDesignTimeHtml 메서드를 호출하여 연결된 웹 서버 컨트롤에 대한 디자인 타임 HTML 태그를 새로 고칩니다. (다음에서 상속됨 ControlDesigner) |
명시적 인터페이스 구현
적용 대상
추가 정보
.NET