Most voted "mvvm" questions
Design standard that aims to establish a clear separation of responsibilities and make a WPF/Silverlight application easier to maintain. Known as the MVP specialisation.
Learn more…55 questions
Sort by count of
-
0
votes1
answer56
viewsAndroid error "android.app.Application does not implement Dagger.android.Hasactivityinjector"
I am trying to run my app and every time I click a button and go to the Extended activity I get the following error: Process: com.converter.android.dailycope, PID: 28573 java.lang.RuntimeException:…
-
0
votes2
answers186
viewsPrevent the user from using the mainwindow window while another window is open
I have a WPF application following the MVVM standard and in a certain part of the application I show a Progressbar that I implemented in a separate view for the user and, while this progressionBar…
-
0
votes1
answer38
viewsMouse move over an item and an event be generated WPF
I’m having difficulty implementing an effect where when I hover over the item on the screen the speed should be 0. And without the mouse above should be back to 30. Use WPF using MVVM structure, so…
-
0
votes0
answers30
viewsHow to get which viewcell the user clicked on, and pick up a text from a label that is in this same Cell view via commandParameter?
I have the following code in my view <ListView x:Name="MyListView" SeparatorVisibility="None" HasUnevenRows="true" ItemsSource="{Binding Items}" ItemTapped="Handle_ItemTapped"…
-
0
votes2
answers31
viewsThe use of Pushasync<Tviewmodel> in MVVM allows calling multiple pages. How to avoid this?
I have a Button that triggers a Command whose Action is a Pushasync< Tviewmodel >(). The problem is that if you click the button more than once before opening the new screen, it will open more…