XmlFileEditor 类

定义

为使用标准 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
继承
XmlFileEditor

示例

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

注解

XmlFileEditor 是一个 UITypeEditor ,它提供一个对话框,用于为文件名属性选择 XML 文件。

构造函数

XmlFileEditor()

初始化 XmlFileEditor 类的新实例。

属性

IsDropDownResizable

获取一个值,该值指示是否应由用户调整下拉编辑器的大小。

(继承自 UITypeEditor)

方法

EditValue(IServiceProvider, Object)

使用 GetEditStyle() 方法所指示的编辑器样式编辑指定对象的值。

(继承自 UITypeEditor)
EditValue(ITypeDescriptorContext, IServiceProvider, Object)

使用指定的服务提供程序和上下文编辑指定对象的值。

Equals(Object)

确定指定对象是否等于当前对象。

(继承自 Object)
GetEditStyle()

获取由 EditValue(IServiceProvider, Object) 方法使用的编辑器样式。

(继承自 UITypeEditor)
GetEditStyle(ITypeDescriptorContext)

使用指定的 ITypeDescriptorContext 对象获取与此编辑器关联的编辑样式。

GetHashCode()

作为默认哈希函数。

(继承自 Object)
GetPaintValueSupported()

指示该编辑器是否支持绘制对象值的表示形式。

(继承自 UITypeEditor)
GetPaintValueSupported(ITypeDescriptorContext)

指示指定的上下文是否支持在指定的上下文内绘制对象值的表示形式。

(继承自 UITypeEditor)
GetType()

获取当前实例的 Type

(继承自 Object)
MemberwiseClone()

创建当前 Object 的浅表副本。

(继承自 Object)
PaintValue(Object, Graphics, Rectangle)

将指定对象值表示形式绘制到指定的画布上。

(继承自 UITypeEditor)
PaintValue(PaintValueEventArgs)

使用指定的 PaintValueEventArgs 绘制某个对象的值的表示形式。

(继承自 UITypeEditor)
ToString()

返回表示当前对象的字符串。

(继承自 Object)

适用于

另请参阅