I have a very critical business application currently working with Winforms.
The application is the very core of the user interface shell. It takes input, calls a web service on my server to perform the calculations, displays the results in the winforms application, and finally sends the print stream to the printer.
The application is currently being deployed using Click-once.
Moving forward, I am trying to consider how I should move an application to a Silverlight application. A couple of reasons why I think silver.
- It gives customers the feeling that it is a cloud solution.
- Access to any PC. Although the clickonce application can also do this, it needs to install the application, and when updates are available, you need to click βYesβ to update.
- Currently, the application has a drop-down list of customers, this list has expanded to more than 3,000 entries. Scrolling through the list is very painful. With Silverlight, I think of automatic ability.
- From the browser - it will be convenient for those users who use the application daily.
I have not used Silverlight before, so I looked for some expert advice on a few things:
- Print - Allows Silverlight to send raw print data to the printer. The application prints on a Zebra Thermal printer. I have to send the raw bytes to the printer using commands. Can this be done using SL or will it always ask for the Print dialog?
- In the browser - when SL applications are installed both from the browser, how does the update happen, is the application updated automatically, or is the user prompted to select the update?
source share