다음을 통해 공유


PropertyGridEditorPart.Title 속성

정의

편집기 컨트롤의 제목을 가져오거나 설정합니다.

public:
 virtual property System::String ^ Title { System::String ^ get(); void set(System::String ^ value); };
public override string Title { get; set; }
member this.Title : string with get, set
Public Overrides Property Title As String

속성 값

컨트롤의 제목으로 사용되는 문자열입니다. 기본값은 웹 파트 컨트롤 집합에서 제공하는 계산된 컨트롤 이름입니다.

예제

이 코드 예제를 사용 Title 하는 방법에 설명 합니다 의 속성을 컨트롤입니다 PropertyGridEditorPart . 예제를 실행 하는 데 필요한 전체 코드의 예제 섹션을 참조 하세요.를 PropertyGridEditorPart 클래스 개요 항목입니다.

다음 코드 예제에서는 웹 페이지에서 선언적으로 컨트롤에 PropertyGridEditorPart 제목을 설정 하는 방법을 보여 주는 합니다.

<asp:EditorZone ID="EditorZone1" runat="server">
  <ZoneTemplate>
    <asp:PropertyGridEditorPart ID="PropertyGridEditorPart1" 
      runat="server" 
      Title="Edit Custom Properties"
      OnPreRender="PropertyGridEditorPart1_PreRender" 
      OnInit="PropertyGridEditorPart1_Init" />   
  </ZoneTemplate>
</asp:EditorZone>
<asp:EditorZone ID="EditorZone1" runat="server">
  <ZoneTemplate>
    <asp:PropertyGridEditorPart ID="PropertyGridEditorPart1" 
      runat="server" 
      Title="Edit Custom Properties"
      OnPreRender="PropertyGridEditorPart1_PreRender" 
      OnInit="PropertyGridEditorPart1_Init" />   
  </ZoneTemplate>
</asp:EditorZone>

코드 예제의 다음 부분에서는 값을 설정 Title 하는 방법을 보여 줍니다는 프로그래밍 방식으로 속성입니다. 프로그래밍 방식으로 할당된 값을 유지하기 위해 라는 editControlTitle 정적 변수가 사용되며, 이 값은 컨트롤이 초기화될 때마다 속성에 Title 할당되므로 포스트백 이벤트 간에 값이 유지됩니다.

private static String editControlTitle;

protected void Button1_Click(object sender, EventArgs e)
{
  editControlTitle = Server.HtmlEncode(TextBox1.Text);
  PropertyGridEditorPart1.Title = editControlTitle;
}

protected void PropertyGridEditorPart1_Init(object sender, EventArgs e)
{
  if (editControlTitle != null)
    PropertyGridEditorPart1.Title = editControlTitle;
}  
Shared editControlTitle As String

Protected Sub Button1_Click(ByVal sender As Object, _
  ByVal e As System.EventArgs)
  editControlTitle = Server.HtmlEncode(TextBox1.Text)
  PropertyGridEditorPart1.Title = editControlTitle 
End Sub

Protected Sub PropertyGridEditorPart1_Init(ByVal _
  sender As Object, ByVal e As System.EventArgs)
  If Not editControlTitle Is Nothing Then
    PropertyGridEditorPart1.Title = editControlTitle
  End If
End Sub

브라우저에서 페이지를 로드할 때 표시 모드 드롭다운 목록 컨트롤에서 편집 모드를 선택하여 편집 모드로 전환할 수 있습니다. 사용자 정보 웹 파트 컨트롤의 제목 표시줄에서 동사 메뉴(아래쪽 화살표)를 클릭하고 편집을 클릭하여 편집을 시작할 수 있습니다. 편집 UI(사용자 인터페이스)가 표시되면 컨트롤과 그 위에 놓인 단추와 텍스트 상자를 볼 PropertyGridEditorPart 수 있습니다. 컨트롤의 PropertyGridEditorPart 제목은 웹 페이지의 선언적 태그에 할당된 값입니다. 편집기 업데이트파트 제목 단추 옆에 있는 텍스트 상자에 텍스트를 입력한 다음 단추를 클릭하면 컨트롤의 제목이 업데이트됩니다.

설명

Title 속성 값은 컨트롤이 편집 모드에서 PropertyGridEditorPart 표시될 때 컨트롤의 제목 표시줄에 표시됩니다. 컨트롤이 페이지에서 선언되면 특성에 대한 Title 값을 설정할 수 있습니다. 타이틀에 값을 제공하지 않으면 문화권별 기본값이 제공됩니다.

속성은 Title 기본 속성을 재정의하여 타이틀 값이 제공되지 않으면 웹 파트 컨트롤 집합에서 컨트롤에 PropertyGridEditorPart 적합한 기본 제목을 제공할 수 있습니다.

적용 대상

추가 정보