Skip to content
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

ColorPicker 的 Width 与 Height 设置 NaN 后,Thumb 位置发生错误 #146

Open
yanjinhuagood opened this issue Mar 14, 2025 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@yanjinhuagood
Copy link
Member

yanjinhuagood commented Mar 14, 2025

按下面方式使用后 Thumb 移动位置错误。

<wd:ColorPicker Width="NaN" Height="NaN"/>

感谢 Coolkeke 大佬反馈。

@yanjinhuagood yanjinhuagood self-assigned this Mar 14, 2025
@yanjinhuagood yanjinhuagood added the bug Something isn't working label Mar 14, 2025
yanjinhuagood added a commit that referenced this issue Mar 14, 2025
Co-Authored-By: Coolkeke <[email protected]>
@Coolkeke
Copy link
Contributor

在目标控件初始化时_thumb的位置是准确的,但是在色盘在进行大小缩放的时候_thumb其实位置是出现问题的,重要的一点是缩放_thumb的位置没进行刷新,需要在OnRender的时候进行重新刷新_thumb即可

    private void UpdateThumbPosition()
    {
        if (_canvas == null || _thumb == null) return;
        var color = SelectedColor;
        double h = 0, s = 0, b = 0;
        ColorUtil.HsbFromColor(color, ref h, ref s, ref b);
        Canvas.SetLeft(_thumb, s * _canvas.ActualWidth - _thumb.ActualWidth / 2);
        Canvas.SetTop(_thumb, (1 - b) * _canvas.ActualHeight - _thumb.ActualHeight / 2);
    }

    protected override void OnRender(DrawingContext drawingContext)
    {
        base.OnRender(drawingContext);
        UpdateThumbPosition();
    }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants