I wrote a console program in c# that takes up to three files as input, and does some data calculations on them.
I'd like to make a simple frontend that allows the user to easily
*import files - basically choose up to three files to be routed to the backend code
*change settings - i have about 10 settings that i'm currently storing in an app.config file. maybe a simple settings box would be nice
*see whats going on - the console program shows some status messages that might be useful to display on a GUI
I have practically no experience with windows forms or gui design, so I really dont know where to begin. i compiled the backend stuff into a *.dll and am currently playing around in design mode of sharpdevelop...but i really have no idea how to get the two to work together.
any pointers would be greatly appreciated!