vote up 0 vote down star

Hi, I want to validate user's input and I want to inform him about validation error with changing background color of standard winforms textbox control. But instead of changing color immediately I would like to use color fading effect, like here (click on input to fadein effect, click again to fadeout).

Is there any simple way to do it?

Jarek.

Edit: I've also access to In Infragistics controls, I'm not sure if it makes any difference.

flag

1 Answer

vote up 1 vote down check

Assuming this is C#/.Net, creating your own user control is an appropriate solution to this problem. Instead of inheriting from UserControl, your control should instead inherit from Textbox - this will make your control look and act just like an ordinary textbox, and you can add code to handle the fading effect:

public partial class MyCustomTextbox : Textbox
{

}

To do the fading, you'd have to create some sort of timer to progressively change the backcolor with a function like this:

function FadeBackground(float progress)
{
    Color color = Color.FromArgb(255, (int)((1 - progress) * 255),
        (int)((1 - progress) * 255));
    base.BackColor = color;
}

When progress = 0, this will produce a white background, and when progress = 1 this will be full red.

link|flag
Yes, I have custom control ;) I thought about solution that is similar to yours, but not sure if it will be good for application performance, because sometimes I have ~20 entries on screen that are validated :/ I'll check it though. Thx for help. – Jarek Jul 16 at 13:45
2  
If you run the timer only when you need it, pegged at 60 FPS, you shouldn’t notice any performance degradation at all. – Ben Stiglitz Jul 16 at 13:50
1  
20 controls like this shouldn't be any problem for a WinForms app on anything resembling a modern computer. There is no .Net for Windows 3.1. :) – MusiGenesis Jul 16 at 14:05
Ok ;) Thanks again for your time. – Jarek Jul 16 at 14:19

Your Answer

Get an OpenID
or

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