I have been developing C # from scratch in less than 3 months, and what I have got now is a console application created using Visual Studio 2015. This application uses a web service, XML is deserialized, formatted and stored in Access database and finally success or error. XML is sent back to the web server. The application includes 3 classes: the main stream class, the SOAP client class, and the DB class.
Now the reason I am posting this is because I need this console application to be integrated with a graphical interface in which some data received from deserialized XML should be displayed (this is an extension of the project, I think, before moving on to the developing stage) but I have no idea how to do this.
So far I have been reading “Building WPF Applications” and “Windows Forms,” but the documentation is stunning and I don’t know if I am on the right track so that you guys can give some recommendations before I start spending time, which may not be the best option for integrating my console application with a GUI ? Is there a way to make the console application become a GUI?
I would appreciate it if you would provide me with practical links to tutorials in which they quickly implement graphical interfaces, my time is running out and I need to start coding right now. Thank you so much for reading this and helping me.
source
share