vote up 0 vote down star
public partial class PreTextBox : TextBox
{
    public PreTextBox()
    {
        InitializeComponent();
        Text = PreText;
        ForeColor = Color.Gray;
    }
    public string PreText
    {
        set;
        get;
    }

Text not set from PreText?

flag

Not sure what you really trying to achieve. – NinethSense Oct 22 at 7:41

2 Answers

vote up 0 vote down check

Try the following:

public partial class PreTextBox : TextBox
{
    public PreTextBox()
    {
        InitializeComponent();
        Text = PreText;
        ForeColor = Color.Gray;
    }
    public string PreText
    {
        set{Text = value;} 
        get{return Text;}
    }
}
link|flag
get{return Text;} – monkey_boys Oct 22 at 8:04
private string _p; public string PreText { set { Text = value; _p = value; } get { return _p; } } – monkey_boys Oct 22 at 8:04
vote up 0 vote down

Your code only does it once, on the constructor. You will have to write a setter for your PreText property to set the Text property as well.

Or you could just use the Text property on the TextBox that you're inheriting from and be done with it :)

link|flag

Your Answer

Get an OpenID
or

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