Browse by Tags
Sorry, but there are no more tags available to filter with.
-
-
Freely available, and maybe useful... sometimes. All available from CodeProject (surprized?) -f. Ref.: http://www.codeproject.com/KB/miscctrl/A_Gauge.aspx – Simple, but many types http://www.codeproject.com/KB/GDI-plus/AquaGauge.aspx – Confort range enabled...
-
-
Quick, simple, and really useful to end users... 1. Handle DragEnter, and set the e.Effect attribute of the event. 2. Handle the DragDrop Event, and get your data from e.Data.GetData(); -f.
-
-
Did you ever think of using a web browser to enhanced your Windows UI? Take a look at the .NET Tip of the Day Client... -f. ref: http://www.chapleau.info/wiki/Project_Net_Tip_of_the_day
-
-
An Icon can be used for user control, in the VS IDE. This is an attribute, [ToolboxBitmap[typeof(ResourceLocator), “FullPathof the Icon.bmp”]
-
-
Yes! You can do it! Integrate a Office-2007-Like ribbon in your application. http://ribbon.codeplex.com/ -f.
-
-
What to improve your software by adding icons? There is many websites selling them, but there is not many ones with free icon, that you can use legally. The most popular one is the Fam Fam Fam collection of icons, and I recently found FreeFavicon that...
-
-
When integrating a Tray Icon to your application, it is a good idea to add a Minimize to Tray option as Outlook. This can be done using a simple line that detect form resize, and when the WindowState is Minimized, call the Hide() function on the form...