EditorPartChrome.CreateEditorPartChromeStyle 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
EditorPart 개체로 렌더링된 각 EditorPartChrome 컨트롤에 대한 스타일 특성을 제공하는 스타일 개체를 만듭니다.
protected:
virtual System::Web::UI::WebControls::Style ^ CreateEditorPartChromeStyle(System::Web::UI::WebControls::WebParts::EditorPart ^ editorPart, System::Web::UI::WebControls::WebParts::PartChromeType chromeType);
protected virtual System.Web.UI.WebControls.Style CreateEditorPartChromeStyle (System.Web.UI.WebControls.WebParts.EditorPart editorPart, System.Web.UI.WebControls.WebParts.PartChromeType chromeType);
abstract member CreateEditorPartChromeStyle : System.Web.UI.WebControls.WebParts.EditorPart * System.Web.UI.WebControls.WebParts.PartChromeType -> System.Web.UI.WebControls.Style
override this.CreateEditorPartChromeStyle : System.Web.UI.WebControls.WebParts.EditorPart * System.Web.UI.WebControls.WebParts.PartChromeType -> System.Web.UI.WebControls.Style
Protected Overridable Function CreateEditorPartChromeStyle (editorPart As EditorPart, chromeType As PartChromeType) As Style
매개 변수
- editorPart
- EditorPart
현재 렌더링하고 있는 컨트롤입니다.
- chromeType
- PartChromeType
특정 컨트롤에 대한 크롬의 형식이며 PartChromeType 열거형 값 중 하나입니다.
반환
editorPart
에 대한 스타일 특성이 들어 있는 Style입니다.
예외
editorPart
에서 참조하는 컨트롤이 null
인 경우
chromeType
이(가) PartChromeType가 아닌 경우
예제
다음 코드 예제에서는 재정의 하는 방법에 설명 합니다 CreateEditorPartChromeStyle 편집기 파트 컨트롤의 배경색을 변경 하는 방법입니다. 전체 코드의 예제를 실행 하는 데 필요한 경우의 예 섹션을 참조 이러한 컨트롤을 호스팅하는 웹 페이지를 포함 하는 EditorPartChrome 클래스 개요입니다.
protected override Style CreateEditorPartChromeStyle(EditorPart editorPart, PartChromeType chromeType)
{
Style editorStyle = base.CreateEditorPartChromeStyle(editorPart, chromeType);
editorStyle.BackColor = Color.Bisque;
return editorStyle;
}
Protected Overrides Function CreateEditorPartChromeStyle(ByVal editorPart As System.Web.UI.WebControls.WebParts.EditorPart, ByVal chromeType As System.Web.UI.WebControls.WebParts.PartChromeType) As System.Web.UI.WebControls.Style
Dim editorStyle As Style
editorStyle = MyBase.CreateEditorPartChromeStyle(editorPart, chromeType)
editorStyle.BackColor = Drawing.Color.Bisque
Return editorStyle
End Function
설명
CreateEditorPartChromeStyle 메서드를 만듭니다를 Style 에서 사용 되는 개체를 EditorPartChrome 렌더링 하는 개체는 EditorPart 컨트롤입니다.
상속자 참고
상속 하는 경우는 EditorPartChrome 클래스를 선택적으로 재정의할 수는 CreateEditorPartChromeStyle(EditorPart, PartChromeType) 메서드 및 사용자 지정 스타일을 사용 하 여 기본 메서드에서 스타일 정보를 추가 하려는 특성 병합 합니다. 데모를 보려면 예제 단원을 참조 합니다.