ForeGround color

G

Guest

Hi ALL,

I am using visual stadio 2005 and NETCF2.0
And when I set TextBox.ForeColor,
but it does not reflect on the device?

How to change the TextBox.ForeColor.
If I change BackColor = Color.Red, it does work.

Thanks
 
G

Guest

here is my code

this.label = new TextBox();
this.label.Location = new Point(this.picF.Width,
SurveyListScreen.ORIGIN);
this.label.Text = title + ":";
this.label.Width = SurveyListScreen.LABEL_WIDTH;
this.label.Height = SurveyListScreen.WIDGET_HEIGHT;
this.label.ScrollBars = ScrollBars.Vertical;
this.label.Multiline = true;
this.label.BorderStyle = BorderStyle.None;
this.label.ReadOnly = true;
this.label.AcceptsTab = false;
this.label.ForeColor = Color.Red;
And I add this label to a Panel object, and
and this Panel also was added to another Panel.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top