.NET MAUI MVVM 기본 처리
.NET MAUI MVVM 기본 처리 MVVM 을 사용하기 위한 기본 구성을 알아봅니다.View, ViewModel 폴더를 만들고 ViewModel 에서 사용되는 Model 폴더도 생성합니다.(여기에선 Model 은 다루지 않음)[TestView.xaml] Parameter 가 없는 Command 는 TestCommand 이며Parameter 가 있는 Command 는 ParameterCommand 로 CommandParameter 에 passwordEntry 값을 사용합니다.화면에 바인딩항 ViewModel 을 정의합니다.ViewModel 정의using System.ComponentModel;using System.Wi..