Posted May 15, 200916 yr I have programmed KeepAlive in C# for just to learn what's it all about. I would've liked to make the button flash, i.e. to change color periodically, but couldn't quess how to do it. Any advice is welcomed. The program displays a dialog window with a single button that I shuld've wanted to blink or to change color to attract a user's attention. The EXE-file is to be found in BIN directory (RELEASE or DEBUG). To compile the project, MS .NET Framework 3.5 and MS Visual C# 2008 Express Edition are needed. Please notify me of any changes to the source code. KeepShadowDefenderAlive.rar Edited May 18, 200916 yr by CodeRipper
May 17, 200916 yr If you want visual effects you could use WPF-Windows Presentation Foundation. Normal C# with a mix of XAML to create DirectX driven applications.This is Blend...like an IDE for those WPF-C# applications:http://windowsclient.net/learn/video.aspx?v=3934
May 17, 200916 yr Just slap a Timer control on, set period (in millisecond) on which timer code will be executed, and just toggle colors (if red, set blue, and other way around).
May 19, 200916 yr Author Just slap a Timer control on, set period (in millisecond) on which timer code will be executed, and just toggle colors (if red, set blue, and other way around). Thanks. Simple as it is, it works. The new version of my program (along with Shadow Defender v1.1.0.278) is available here. If you want visual effects you could use WPF-Windows Presentation Foundation. Normal C# with a mix of XAML to create DirectX driven applications.This is Blend...like an IDE for those WPF-C# applications: http://windowsclient.net/learn/video.aspx?v=3934 A very nice tutorial. I will certainly try it as my next project. Thanks. Edited May 19, 200916 yr by CodeRipper
Create an account or sign in to comment