-
Notifications
You must be signed in to change notification settings - Fork 364
Closed as not planned
Closed as not planned
Copy link
Labels
duplicate 👥Indicates that an identical issue or PR already existsIndicates that an identical issue or PR already existsfeature request 📬A request for new changes to improve functionalityA request for new changes to improve functionalitymvvm-toolkit 🧰Issues/PRs for the MVVM ToolkitIssues/PRs for the MVVM Toolkit
Description
Describe the problem
A way/special attribute to be used in conjunction with ICommand or ObservableProperty which signalizes the backing field not to be serialized
Describe the solution
[ICommand]
[SpecialXMLIgnore]
private void DoSomething()
{
MessageBox.Show("Hello");
}
Example which should compile to
[XmlIgnore]
private IRelayCommand? doSomethingCommand;
public IRelayCommand DoSomethingCommand => doSomethingCommand ??= new RelayCommand(DoSomething);
Alternatives
No response
Additional info
No response
Help us help you
No response
skint007, eriove and danielmeza
Metadata
Metadata
Assignees
Labels
duplicate 👥Indicates that an identical issue or PR already existsIndicates that an identical issue or PR already existsfeature request 📬A request for new changes to improve functionalityA request for new changes to improve functionalitymvvm-toolkit 🧰Issues/PRs for the MVVM ToolkitIssues/PRs for the MVVM Toolkit