![]() |
| Crystal Picture Show Demo |
I've updated the source code for all the toolkit and the demos to Visual Studio 2010 and .NET Framework 4.0. A couple of minor bug fixes are included along with some code cleanup courtesy of ReSharper.
You might ask: why .NET Framework 4 instead of .NET Framework 4 client profile? Because I used log4net in the Crystal Toolkit, this would not compile under the .NET 4.0 Client profile. It requires the full .NET 4.0 package. See Tseo's blog for more details.
Visit the new SourceForge page for the Crystal Image Toolkit. You can download the 1.0.1. version there and any new updates in the future.

How do I reset/remove all pictures from a CrystalImageGridView control?
ReplyDeleteYou can call ClearModel in the collector class. Take a look at the demos, usually in the Form1 class you will see:
ReplyDelete_theCollector.PurgeImages();
This will clear the images from the Model, and the Model will update the view to display an empty window.