vote up 0 vote down star

I am writing an application which is going to allows users to change the properties of a text box or label and these controls are user controls. Would it be easiest to create a separate class for each user control which implements the properties I want them to be able to change and then bind those back to the user control? Or is there another method I am overlooking?

Thanks.

flag

1 Answer

vote up 1 vote down check

Create a custom Attribute, and tag the properties you want the user to edit with this attribute. Then set the BrowsableAttribute property on the property grid to a collection containing only your custom attribute:

public class MyForm : Form
{
    private PropertyGrid _grid = new PropertyGrid();

    public MyForm()
    {
        this._grid.BrowsableAttributes = new AttributeCollection(new UserEditableAttribute());
        this._grid.SelectedObject = new MyControl();
    }
}

public class UserEditableAttribute : Attribute
{

}

public class MyControl : UserControl
{
    private Label _label = new Label();
    private TextBox _textBox = new TextBox();

    [UserEditable]
    public string Label
    {
        get
        {
            return this._label.Text;
        }
        set
        {
            this._label.Text = value;
        }
    }

    [UserEditable]
    public string Value
    {
        get
        {
            return this._textBox.Text;
        }
        set
        {
            this._textBox.Text = value;
        }
    }
}
link|flag
Ah I see, I will give this a shot. Thanks so much. – Nathan Oct 29 at 15:20
Philip is this a different process then the one here? c-sharpcorner.com/UploadFile/mgold/… Also, if you know how can I add a combo box to the property grid? – Nathan Oct 29 at 21:31
Take a look at this article: codeproject.com/KB/tabs/… – Xaero Oct 30 at 12:34
Would you be willing to send me an email at severewxchaser_83@yahoo.com so I could have your email address? I would like to ask a couple more questions and email is easier then this. – Nathan Oct 30 at 13:43
Ask them through here, then at least the rest of SO can contribute to/benefit from the answer. – Xaero Oct 30 at 18:48
show 4 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.