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
按下面方式使用后 Thumb 移动位置错误。
<wd:ColorPicker Width="NaN" Height="NaN"/>
感谢 Coolkeke 大佬反馈。
The text was updated successfully, but these errors were encountered:
Fix issue( #146 )
a4426fb
Co-Authored-By: Coolkeke <[email protected]>
在目标控件初始化时_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(); }
Sorry, something went wrong.
yanjinhuagood
No branches or pull requests
按下面方式使用后 Thumb 移动位置错误。
感谢 Coolkeke 大佬反馈。
The text was updated successfully, but these errors were encountered: