Top "Mvvm" questions

Model-View-ViewModel (MVVM) is an architectural design pattern for implementing user interfaces that separates the UI (the View) from its data (the Model) via its presentation logic (its ViewModel).

WPF loading spinner

The goal is to display the information that the application is working. So I'm looking for an intelligent implementation sample …

c# wpf mvvm spinner loading
ICommand MVVM implementation

So in this particular MVVM implementation I'm doing, I need several commands. I really got tired of implementing the ICommand …

c# .net wpf mvvm icommand
WPF MVVM: How to close a window

I have a Button that closes my window when it's clicked: <Button x:Name="buttonOk" IsCancel="True">Ok&…

c# .net wpf xaml mvvm
[Vue warn]: Cannot find element

I'm using Vuejs. This is my markup: <body> <div id="main"> <div id="mainActivity" v-component="{{…

javascript mvvm vue.js
Vue.js—Difference between v-model and v-bind

I'm learning Vue with an online course and the instructor gave me an exercise to make an input text with …

javascript mvvm frameworks vue.js frontend
Pass command parameter to method in ViewModel in WPF?

I am trying to pass CommandParameter to the method in my ViewModel. How to do this? private void Open(object …

c# wpf mvvm icommand
Handling Dialogs in WPF with MVVM

In the MVVM pattern for WPF, handling dialogs is one of the more complex operations. As your view model does …

.net wpf design-patterns mvvm dialog
Set focus on TextBox in WPF from view model

I have a TextBox and a Button in my view. Now I am checking a condition upon button click and …

c# wpf xaml mvvm textbox
Close Window from ViewModel

Im creating a Login using a window control to allow a user to login into a WPF application that I …

c# wpf mvvm
How can I make a TextBox be a "password box" and display stars when using MVVM?

How can I do this in XAML: PSEUDO-CODE: <TextBox Text="{Binding Password}" Type="Password"/> so that the user …

c# wpf xaml mvvm textbox