我在属性网格中有一个FileNameEditor,它有一些像
这样的条目主文件:“C:\ blah1”
秒文件:“C:\ blah2”
等等。
我的问题是我无法从一个属性条目复制并粘贴到另一个属性条目,我也无法手动输入字段。是否有一个特定的属性可以在FileNameEditor中进行编辑。 实施例
public class MyEditor : FileNameEditor
{
public override bool GetPaintValueSupported(ITypeDescriptorContext context)
{
return false;
}
public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
{
object e = base.EditValue(context, provider, value);
if ((value as MyFileS) != null)
{
(value as MyFilesS).FileName = (String) e;
}
return e;
}
protected override void InitializeDialog(OpenFileDialog openFileDialog)
{
base.InitializeDialog(openFileDialog);
}
}
由于
答案 0 :(得分:1)
无法复制;这很好 - 可以在网格和弹出窗口中复制/粘贴(你的属性有一个setter吗?):
using System;
using System.ComponentModel;
using System.Drawing.Design;
using System.Windows.Forms;
using System.Windows.Forms.Design;
class Foo
{
[Editor(typeof(FileNameEditor), typeof(UITypeEditor))]
public string Name { get; set; }
[STAThread]
static void Main()
{
using (Form form = new Form())
using (PropertyGrid grid = new PropertyGrid())
{
grid.Dock = DockStyle.Fill;
form.Controls.Add(grid);
grid.SelectedObject = new Foo();
Application.Run(form);
}
}
}
答案 1 :(得分:1)
为什么使用自定义编辑器?如果您只想在对象上使用字符串属性,那么Marc Gravell的答案就可以了。
但是,如果属性网格中对象的“File”属性是自定义类,则还需要实现自定义类型转换器。
例如:
namespace WindowsFormsApplication
{
using System;
using System.ComponentModel;
using System.Drawing.Design;
using System.Globalization;
using System.Windows.Forms;
using System.Windows.Forms.Design;
class MyEditor : FileNameEditor
{
public override bool GetPaintValueSupported(ITypeDescriptorContext context)
{
return false;
}
public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
{
string s = Environment.CurrentDirectory;
object e = base.EditValue(context, provider, value);
Environment.CurrentDirectory = s;
var myFile = value as MyFile;
if (myFile != null && e is string)
{
myFile.FileName = (string)e;
return myFile;
}
return e;
}
}
class MyFileTypeConverter : TypeConverter
{
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
{
if (sourceType == typeof(string))
return true;
return base.CanConvertFrom(context, sourceType);
}
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
{
if (destinationType == typeof(string))
return true;
return base.CanConvertTo(context, destinationType);
}
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
{
if (value is string)
return new MyFile { FileName = (string)value };
return base.ConvertFrom(context, culture, value);
}
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
{
var myFile = value as MyFile;
if (myFile != null && destinationType == typeof(string))
return myFile.FileName;
return base.ConvertTo(context, culture, value, destinationType);
}
}
[TypeConverter(typeof(MyFileTypeConverter))]
[Editor(typeof(MyEditor), typeof(UITypeEditor))]
class MyFile
{
public string FileName { get; set; }
}
class MyFileContainer
{
public MyFileContainer()
{
File1 = new MyFile { FileName = "myFile1.txt" };
File2 = new MyFile { FileName = "myFile2.txt" };
}
public MyFile File1 { get; set; }
public MyFile File2 { get; set; }
}
static public class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
using (var f = new Form())
using (var pg = new PropertyGrid())
{
pg.Dock = DockStyle.Fill;
pg.SelectedObject = new MyFileContainer();
f.Controls.Add(pg);
Application.Run(f);
}
}
}
}
要支持编辑文件名,还要剪切和粘贴PropertyGrid需要知道如何从字符串转换为“文件”类型并再次返回。如果未在TypeConverter中实现convert to string方法,则该属性将显示对象的ToString()的结果。
我建议掏出Reflector.Net并将源代码读取到BCL中的一些UITypeEditors和TypeConverters,因为它可以让我们了解Microsoft如何支持在属性网格中编辑Color,TimeSpan,DateTime等。
另外,请小心打开文件对话框。如果您不小心,标准的WinForms打开文件对话框可以更改您的应用程序当前工作目录。我不认为FileNameEditor有这个问题,但我只是在Windows 7下进行了测试。