Archive
Save file dialog with Encoding dropdown
Time/Date slider (trackbar) component for .NET WinForms
http://www.codeproject.com/cs/miscctrl/TimeSlider.asp
for using only with time, use custom format of the style "hh:mm:ss.ff" (remember to set it to use the custom format instead of the predefined ones)
the only thing that doesn’t seem to work OK is the "ShowSegment" property – it doesn’t draw the red underline bar for the current time selection at the correct position
Flexible table components for .NET WinForms
http://www.devage.com/Wiki/ViewArticle.aspx?name=sourcegrid&version=0
quite mature
XPTable:
http://www.codeproject.com/cs/miscctrl/XPTable.asp
a bit underdeveloped, but interesting in that it tries to mimic JTable of Java/Swing. One could try J# Supplemental UI library instead, but J# Swing (sup ui lib) controls don’t interoperate with WinForms unfortunately (don’t know if anyone made a host control using reflection)
Delphi-like ActionList component for .NET WinForms
http://www.codeproject.com/cs/miscctrl/actionlist.asp
note that to add event handler for an action you have to first select
if from the component selector dropdownbox that is at the top of the
properties window of VS.net (can’t select it at the actions collection
editor)
I suggest rebuilding the sourcecode with .NET 2 (VS.net 2005), although the DLL seems to work ok even without doing that
Most Recently Used (MRU) component for .NET 2.0 WinForms
This very nice component was made for .NET 1.1 WinForms MenuBar control. If you scroll down that page to the discussions you’ll see a posting of mine with the code I converted to make it work with .NET 2.0 WinForms MenuStrip control
other .net 2.0 mru library is
http://www.codeproject.com/csharp/mrutoolstripmenu.asp
(for .NET2′s MenuStrip)
but it’s not a component and one has to write code to use it