New Post: Updating grid with 1000+ updates every second
Hi I am getting my head around RX and introducing it into our WPF MVVM designed application.The problem The problem that I have is that data is appearing too fast into the GRID and I would like a way...
View ArticleNew Post: Updating grid with 1000+ updates every second
If you're using Reactive (RX), why not use PRISM with ReactiveUI? http://reactiveui.net/ I use ReactiveUI + PRISM for software that I develop for work. If you use IObserver or IObservable, why not...
View ArticleNew Post: Updating grid with 1000+ updates every second
Issue with throttling Cant use throttle as each update that comes in must be used in a further computation that is required for a graphing component , so throttling in this situation is not useful as...
View ArticleNew Post: EventAggregator Update GUI
Thank you for your answer Brian, if is set the ThreadOption to UIThread, the ShowWaitWindow() method in the ViewModel is executed after the complete Start() method in my StartupManager is done. The...
View ArticleNew Post: EventAggregator Update GUI
OK,now I think I understand what you mean by the UI not updating. Is the Start method being called on the UI thread or a separate thread? When you use ThreadOption.UIThread, under the covers it does a...
View ArticleNew Post: EventAggregator Update GUI
It seems to be the UI Thread. If I do this:Task<bool> result = Task.Factory.StartNew<bool>(Start); the GUI is working! :) Unfortunately I am getting the next error from the region manager,...
View ArticleNew Post: Incompatibilities between Prism 5 and NET 4.5.2
Hello people, I got the same error, but only in the function "Edit and Continue" Visual Studio 2013. This occurs whenever I change the code and try to continue running. After much searching and...
View ArticleNew Post: Incompatibilities between Prism 5 and NET 4.5.2
Well, as Patrick said, the problem is caused when using PCL (Portable Class Library) or, as I mentioned, "portable project". Once you reference the libs folder "C: \ Program Files (x86)\Reference...
View ArticleNew Post: Regarding AdventureWorks.Shopper -...
Hi, I'm Serializing a ObservableCollection:private ObservableCollection<Models.WorkSenario> workingSenarios; public ObservableCollection<Models.WorkSenario> _WorkingSenarios { get { return...
View ArticleNew Post: Regarding AdventureWorks.Shopper -...
Short answer - SessionStateService uses DataContractSerializer under the covers, so it will honor your DataContract/DataMember annotations if present, if not it treats it as an implicit data contract...
View ArticleNew Post: Regarding AdventureWorks.Shopper -...
Cool! Thanks for your response! I check out the articles too!
View ArticleNew Post: Login screen prior to Shell
I am fairly new to Prism, however, if the bootstrapper takes care of the IOC container and launches the shell, where do I initialise a login screen and how would that link in? It would need unity to...
View ArticleNew Post: Login screen prior to Shell
It depends on whether you want the user to see the shell in the background with the login as a pop up over it, or you want only the login dialog and never show the main window if they don't...
View ArticleNew Post: Login screen prior to Shell
Thanks for the reply Brian, I am pretty sure I want it prior to the main shell showing, it is a shame because I will have to resolve the dependency on the service layer myself as the unity container...
View ArticleNew Post: Login screen prior to Shell
Not sure I understand your concern. It is very normal to register some shell level services in the Bootstrapper. Typically that is done by overriding ConfigureContainer, and after the call to the base...
View ArticleNew Post: Login screen prior to Shell
You have been really helpful so far, currently I have the following - the configure container will resolve and DI and I am using ViewModelLocator to hook everything up, I am just not sure about how and...
View ArticleNew Post: Login screen prior to Shell
You can put it in InitializeShell - create and show your login dialog from there, and don't do the two lines of code that set the main window and show it until after the login dialog is successfully...
View ArticleNew Post: App Settings: ISessionStateService _sessionStateService vs...
Hi Question, what is the major difference in using ISessionStateService in saving state data as to appose to saving App settings. I don't see it being used in the Adventure Works Shopper, but I'm...
View ArticleNew Post: App Settings: ISessionStateService _sessionStateService vs...
The current code base was developed against the WinRT APIs first and then ported to Universal apps, so it did not really take ApplicationDataContainer into consideration. But in terms of application...
View Article