C#为自定义控件创建一个浏览文件属性

时间:2012-02-20 20:28:30

标签: c# file properties custom-controls

当我创作自定义主题/控件时,我需要为该控件创建一个属性,用户在其中选择.ico文件(Windows图标文件)。它应该像表单的Choose background属性一样。接受,这仅限于.ico文件。 到目前为止,我有这段代码:

private string IconLocation;
public string CustomIcon
{
    get
    {
        return IconLocation;
    }
    set
    {
        IconLocation = value;
    }
}

不管怎么说,这不能按照我想要的方式工作,我也找到了这段代码:

[DefaultValue(""), Editor("System.Web.UI.Design.ImageUrlEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", typeof(UITypeEditor)), UrlProperty, WebSysDescription("Image_ImageUrl"), Bindable(true), WebCategory("Appearance")]
public virtual string ImageUrl
{
    get
    {
        string str = (string) this.ViewState["ImageUrl"];
        if (str != null)
        {
            return str;
        }
    return string.Empty;
    }
    set
    {
        this.ViewState["ImageUrl"] = value;
    }
}

来自:http://forums.asp.net/t/1335659.aspx

这也不起作用,因为视图状态不可用,所以如何在正常的c#中为自定义属性实现文件选择?

2 个答案:

答案 0 :(得分:1)

我徒劳地试图通过从UrlEditorImgageUrlEditor得到一个来创建我自己的UITypeEditor并尝试使用这个。但是,这绝对没有效果。

[SecurityPermission(SecurityAction.Demand, Flags = SecurityPermissionFlag.UnmanagedCode)]
public class IconUrlEditor : UrlEditor
{
    protected override string Filter
    {
        get
        {
            return "Icon Files (*.ico)|*.ico";
        }
    }
}

我还设置了UrlProperty的过滤属性。这似乎也没有效果。

public partial class WebUserControl1 : System.Web.UI.UserControl
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Image1.ImageUrl = ImageUrl;
    }

    [Editor(typeof(IconUrlEditor), typeof(UITypeEditor)), UrlProperty("*.ico")]
    public virtual string ImageUrl { get; set; }
}

或者,我遗漏了某些内容,或者内部没有使用这些过滤器属性。

答案 1 :(得分:0)

嗯,想通了,似乎没有文档,但这是怎么做的:

private Icon IconLocation;
public Icon CustomIcon
{
    get
    {
        return IconLocation;
    }
    set
    {
        IconLocation = value;
    }
}