XmlFileEditor 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
표준 OpenFileDialog 상자를 사용하여 XML 파일을 선택할 수 있는 사용자 인터페이스를 제공합니다.
public ref class XmlFileEditor : System::Drawing::Design::UITypeEditor
public class XmlFileEditor : System.Drawing.Design.UITypeEditor
type XmlFileEditor = class
inherit UITypeEditor
Public Class XmlFileEditor
Inherits UITypeEditor
- 상속
예제
private:
property String^ XmlFile
{
[EditorAttribute(XmlFileEditor::typeid,UITypeEditor::typeid)]
String^ get()
{
return xml_;
}
[EditorAttribute(XmlFileEditor::typeid,UITypeEditor::typeid)]
void set( String^ value )
{
xml_ = value;
}
}
String^ xml_;
[EditorAttribute(typeof(System.Web.UI.Design.XmlFileEditor), typeof(UITypeEditor))]
public string XmlFile
{
get
{
return xml_;
}
set
{
xml_ = value;
}
}
private string xml_;
<EditorAttribute(GetType(System.Web.UI.Design.XmlFileEditor), GetType(UITypeEditor))> _
Public Property XmlFile() As String
Get
Return xml_
End Get
Set
xml_ = value
End Set
End Property
Private xml_ As String
설명
XmlFileEditorUITypeEditor 파일 이름 속성에 대 한 XML 파일을 선택 하는 것에 대 한 대화 상자를 제공 합니다.
생성자
XmlFileEditor() |
XmlFileEditor 클래스의 새 인스턴스를 초기화합니다. |
속성
IsDropDownResizable |
드롭다운 편집기를 사용자가 크기 조정할 수 있는지 여부를 나타내는 값을 가져옵니다. (다음에서 상속됨 UITypeEditor) |