Tagged Questions

5
votes
3answers
1k views

When I change a .NET Button's BackColor back to its original value, it doesn't look the same anymore

I have a button which I wanted to "flash" briefly to get the user's attention. I figured the easiest way would be to change the Button's BackColor property to another color, and then switch it back ...
4
votes
2answers
127 views

.NET TextBox BackColor issue

On a .NET page, I have a textbox. If I don't change the BackColor property, it looks flat. However, when using BackColor, e.g.: txt.BackColor = System.Drawing.Color.Yellow; the look changes to some ...
2
votes
3answers
3k views

How to change the backcolor of a row in a DataGridView based on the value of a cell?

Say I have a DataGridView which shows the content of a DataTable. I want to be able to set the backcolor of a row based on the value of a cell in this row. Note that the cell in question is in a ...
1
vote
1answer
58 views

Why doesn't toolstriplabel's backcolor property change during design time or run time?

I need to have a toolstrip label and its back color changed during runtime, but no matter what I do. It just won't change its backcolor, even though they give option to change its backcolor. Why is ...
1
vote
1answer
260 views

How can I make the BackColor of a Label update faster?

EDIT: I have managed a workaround. Now on MouseEnter, I set the focus to the button, and I change the MouseOverBackColor to the button's current BackColor; I also have an event handler (in the parent ...
0
votes
1answer
25 views

.net datagridview cell transparent back color

I have a 4x4 datagridview. Every cell has a special backcolor. So I want the selected cell background to be transparent. I googled about it, but I dont find a valid solution. when I set the selection ...
0
votes
1answer
966 views

Change color of scrollbar of listbox in ASP.NET

How to change the color of scrollbar of a listbox in ASP.NET?