-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Implemented the RecognizesAccessKey property in the label and its def… #3878
New issue
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
base: main
Are you sure you want to change the base?
Conversation
"RecognizesAccessKey", | ||
typeof(bool), | ||
typeof(Label), | ||
new FrameworkPropertyMetadata(true)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do not think the default value should be true.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I put it to true for backwards compatibility. Am I missing something?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct, not being it true
by default would be a serious breaking change.
Any reason for not using ContentPresenter.RecognizesAccessKeyProperty.AddOwner
instead of declaring a new one?
/azp run |
Azure Pipelines successfully started running 1 pipeline(s). |
Hi @Nils-Berghs This is an API change that will require approval from at least one other WPF developer. The build is failing due to our API compatibility checks. /cc @SamBent |
As per discussion in #3877 I don't think should be merged as it defeats the purpose of the |
Adding @MikeHillberg for API review... |
Implemented the RecognizesAccessKey property in the label and its default styles #3877