AdminFinder Sources - C# + Xaml
Hello everyone. Lately, after the minor release of my humble adminfinder I've been getting a lot of PMs asking for the sources of my program. Today I decided it was time to put a little time into creating a thread, so some of you could actually learn something from me..
OO-design
First of all, I tried to apply as much as OO-design as possible. Doing this, creating another gui for this backend is child's play. It's a pure MVC design that uses dependency injection for getting the appropriate list of adminpaths.
Basic things like patterns and interfaces are added, for you to learn how to work with them. One could easily do this without interfaces, but you'll see how the dal (the persistence) was worked out, and you'll notice that with the addition of only 1 class, one could get everything out of a database for example...
The controller is the only thing that talks to the gui. It's also the only thing a gui should import (using..) and reference to.
never let the user interface know your domain classes!
WPF
I see a lot of you here use basic Windows Forms. I though, why not play a bit with the Windows Presentation Foundation? I started of creating a normal form, but I then realised I could do more fancy things with WPF. Using the exact same model (no changes whatsoever), I created a frontend in xamlcode.
It's so easy to create a different gui with this model. I mean, a website using this model can be created in less than one hour. Even a silverlight application would be deadly easy.
I recommend not looking at the xamlcode, as it is semi-autogenerated by not only VS Ultimate, but also MS Blend (which you could get as a student from dreamspark..). But the
codebehind of the form is very interesting, as it contains a
background worker that works with a progressbar ;)
Download program
The software can be downloaded below. This and more software can also be downloaded @
Windscream
Download source
The sources are free to download. If you however would use it somehow, please give credits and send me a mail with the link.
download here
@_Qkyrie_