How to make TextBlock clickable. It is necessary to comply with the mvvm concept, in the bind to the method or command in the ViewModel
public ICommand RememberMeCommand { get { rememberMeChecked = !_rememberMe; return null; } set { rememberMeChecked = !_rememberMe; } } I register a bandage here, but it does not even enter when pressed, there is no entry to the debugger point. How to implement?
get { return null; }should work fine? - Andrey NOP