We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In WPF, you write code like this a lot:
if (__PART_ActionButton != null) { __PART_ActionButton.Click -= this.PART_ActionButton_Click; } __PART_ActionButton = value; if (__PART_ActionButton != null) { __PART_ActionButton.Click += this.PART_ActionButton_Click; }
It would be really nice if I could just do this:
__PART_ActionButton?.Click -= this.PART_ActionButton_Click; __PART_ActionButton = value; __PART_ActionButton?.Click += this.PART_ActionButton_Click;
The text was updated successfully, but these errors were encountered:
#1106
Sorry, something went wrong.
Closing as duplicate of #1106
No branches or pull requests
In WPF, you write code like this a lot:
It would be really nice if I could just do this:
The text was updated successfully, but these errors were encountered: