I am creating an application that is essentially a financial alerts site. I am a basic level Java programmer, and I have created some of the logic for alerts in Java. I want to be able to have pop-ups appear on the desktop whenever something “interesting” happens (interesting depends on %change, liquidity and a few […]
Category: popup
Proper way to display pop-ups using WPF M-V-VM pattern
I had a question about the VM responsibilities when it comes to pop-ups. When an app is popping a message box or some kind of dialog (with MVVM), the two options that we have are: putting UI (ShowDialog()) code in VM which seems bad have VM send some kind of event that UI can subscribe […]