-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Fix the issue that setting SelectedIndex before color picker initialize will not retain the selection #19663
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: master
Are you sure you want to change the base?
Fix the issue that setting SelectedIndex before color picker initialize will not retain the selection #19663
Conversation
|
You can test this PR using the following package version. |
|
Please read the following Contributor License Agreement (CLA). If you agree with the CLA, please reply with the following: Contributor License AgreementContribution License AgreementThis Contribution License Agreement ( “Agreement” ) is agreed to by the party signing below ( “You” ), 1. Definitions. “Code” means the computer software code, whether in human-readable or machine-executable form, “Project” means any of the projects owned or managed by AvaloniaUI OÜ and offered under a license “Submit” is the act of uploading, submitting, transmitting, or distributing code or other content to any “Submission” means the Code and any other copyrightable material Submitted by You, including any 2. Your Submission. You must agree to the terms of this Agreement before making a Submission to any 3. Originality of Work. You represent that each of Your Submissions is entirely Your 4. Your Employer. References to “employer” in this Agreement include Your employer or anyone else 5. Licenses. a. Copyright License. You grant AvaloniaUI OÜ, and those who receive the Submission directly b. Patent License. You grant AvaloniaUI OÜ, and those who receive the Submission directly or c. Other Rights Reserved. Each party reserves all rights not expressly granted in this Agreement. 6. Representations and Warranties. You represent that You are legally entitled to grant the above 7. Notice to AvaloniaUI OÜ. You agree to notify AvaloniaUI OÜ in writing of any facts or 8. Information about Submissions. You agree that contributions to Projects and information about 9. Governing Law/Jurisdiction. This Agreement is governed by the laws of the Republic of Estonia, and 10. Entire Agreement/Assignment. This Agreement is the entire agreement between the parties, and AvaloniaUI OÜ dedicates this Contribution License Agreement to the public domain according to the Creative Commons CC0 1. |
|
@cla-avalonia agree |
|
Is the test failure due to environment issues? |
|
Initial selection is usually handled by ISupportInitialize, so ColorView should be using that |
|
This needs to be very carefully reviewed. When I last looked at it the issue wasn't correctly fixable in the ColorPicker.
It's likely we need two fixes here: first for tabcontrol to handle selection properly. Second for Avalonia's flyout lifecycle. |
|
So what should I do next? Discard the changes and wait for new created bugs to be fixed? Or continue to submit as a workaround as of now? |
|
@jay-mao-cn I'll look at this more in the next few days. This may be a valid work-around for the flyout lifecycle part of the problem (I doubt that one will even be discussed anytime soon at the framework level). I still think we should fix TabControl as well though. It shouldn't show invisible tabs in any circumstances. |
|
OK, thanks, looking forward to your feedback. |
|
Hi @robloo , is there any update about this issue? thanks. |
|
@jay-mao-cn Sorry, I will look at it more this week. Just haven't found the time yet. |
|
@jay-mao-cn While this may improve things with code-behind usage it does not fix the issue (It doesn't work in XAML). I tested in control catalog with the following modifications (and your code in this PR): <ColorPicker Width="150"
VerticalContentAlignment="Center"
HsvColor="hsv(120, 1, 1)"
IsColorSpectrumVisible="False"
IsColorComponentsVisible="False"
Margin="0,50,0,0">
<ColorPicker.Content>
<TextBlock Text="{Binding $parent[ColorPicker].Color}"
Foreground="{Binding $parent[ColorPicker].Color, Converter={StaticResource ToBrushConverter}}"></TextBlock>
</ColorPicker.Content>
</ColorPicker>Note the addition of: IsColorSpectrumVisible="False"
IsColorComponentsVisible="False"This does something special: It disables/hides tab 0 (color spectrum) and tab 2 (color components). The default selected index of the control will be tab 0. So we can see the problem when opening the flyout:
The issue is visible here. Tab index 0 is selected and visible... however, that tab is turned off. The top tabs in the TabStrip are actually correct and it only shows the color palette tab there. There are the following issues:
I honestly think if we just fix number 2 with the To fix this in the
|
|
To validate this I have a hack-fix that does solve the problem. I'm not comfortable making this the actual fix because:
/// <inheritdoc/>
protected override void OnApplyTemplate(TemplateAppliedEventArgs e)
{
if (_hexTextBox != null)
{
_hexTextBox.KeyDown -= HexTextBox_KeyDown;
_hexTextBox.LostFocus -= HexTextBox_LostFocus;
}
_dropDownButton = e.NameScope.Find<DropDownButton>("PART_DropDownButton");
_hexTextBox = e.NameScope.Find<TextBox>("PART_HexTextBox");
_tabControl = e.NameScope.Find<TabControl>("PART_TabControl");
if (_dropDownButton is not null &&
_dropDownButton.Flyout is Flyout flyout)
{
flyout.Opened += Flyout_Opened;
}
SetColorToHexTextBox();
if (_hexTextBox != null)
{
_hexTextBox.KeyDown += HexTextBox_KeyDown;
_hexTextBox.LostFocus += HexTextBox_LostFocus;
}
base.OnApplyTemplate(e);
ValidateSelection();
}
private void Flyout_Opened(object? sender, EventArgs e)
{
ValidateSelection(true);
} |
|
Thanks @robloo , I will check it closely. |
This fixes the XAML issue |
|
@Gillibald Thanks for looking at this. How does that interface fix the issue? The problem is the bindings in the Flyout aren't evaluated until the flyout is opened the first time. This is well after ISupportInitialize EndInit() is called. This isn't like other controls where we have to batch property sets together. The issue is simply Flyout lifecycle with deferred bindings. |

What does the pull request do?
Fix the issue that setting SelectedIndex before color picker initialize will not retain the selection.
What is the current behavior?
Setting or binding SelectedIndex (e.g. 1) to color picker when it's not open, the result selection will always be the first tab (i.e. SelectedIndex == 0) after the color picker is open.
What is the updated/expected behavior with this PR?
Setting SelectedIndex before color picker initialize should retain the selection.
How was the solution implemented (if it's not obvious)?
Take the SelectedIndex into account when the color picker call ValidateSelection for the first time (after OnApplyTemplate).
Checklist
Yes.
Breaking changes
N/A.
Obsoletions / Deprecations
N/A.
Fixed issues
Not reported.