Click here to Skip to main content
15,895,746 members
Please Sign up or sign in to vote.
1.50/5 (2 votes)
See more:
I will be developing an app using WPF.I need some inputs for architecture and patterns to be used .
1.Application reads data continously from an hardware(3rd party DLL's are there to read data)
3.Data is read based on ID's which will diff .
Like ID=230 ,Data=Value to display gear indication.
2.Application has a main page which has elements like gear indicator,progress bar ,modes display etc to which data(decode the value and assign corresponding values to UI) has to be updated.
3.There are sub forms which has to be display data in textbox based on the ID's
4.The only user input in the application is button click to navigate to sub forms.
Please suggest any approaches on how to proceed
Posted
Updated 24-Sep-12 17:03pm
v5

1 solution

You can use MVVM or PRISM. For status bar or progress bar that are being shared over multiple views, Sigleton approach will be great.
 
Share this answer
 
Comments
explorerC 24-Sep-12 9:11am    
Hi shashi,Thanks for the reply.

There is need to read the data and process it continously .In which part this should be done in MVVM.
Progress bar is not shared over multiple views.
Read incoming data
----------process data based on ID
--------------------bind with UI(monitor continous changes in data and update in view)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900