MenuDesigner.GetErrorDesignTimeHtml(Exception) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오류가 발생했을 때 디자인 타임에 연결된 컨트롤을 렌더링하는 태그를 제공합니다.
protected:
override System::String ^ GetErrorDesignTimeHtml(Exception ^ e);
protected override string GetErrorDesignTimeHtml (Exception e);
override this.GetErrorDesignTimeHtml : Exception -> string
Protected Overrides Function GetErrorDesignTimeHtml (e As Exception) As String
매개 변수
반환
오류가 발생한 후 디자인 타임에 연결된 Menu를 렌더링하는 데 사용되는 태그를 포함한 문자열입니다.
예제
다음 코드 예제에서는 재정의 하는 방법을 보여 줍니다.는 GetErrorDesignTimeHtml 에서 상속 된 클래스에서 메서드를 MenuDesigner 클래스입니다. 재정의 된 메서드에에서 파생 된 컨트롤의 모양을 변경 합니다 Menu 디자인 타임에는 클래스입니다. 이 예제에서는 굵은 빨간색 텍스트로 렌더링 되는 오류 메시지를 포함 하는 자리 표시자에 대 한 태그를 생성 합니다.
// Generate the design-time markup for the control when an error occurs.
protected override string GetErrorDesignTimeHtml(Exception ex)
{
// Write the error message text in red, bold.
string errorRendering =
"<span style=\"font-weight:bold; color:Red; \">" +
ex.Message + "</span>";
return CreatePlaceHolderDesignTimeHtml(errorRendering);
} // GetErrorDesignTimeHtml
' 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
설명
합니다 GetErrorDesignTimeHtml 오류 디자인 타임 렌더링 하는 태그를 생성 하는 메서드 Menu 형식 이름, 컨트롤 이름 및 오류를 설명 하는 메시지를 포함 하는 자리 표시자로 제어 합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET