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
if we have a Screen Scale in Settings Control System -> Dispay -> Scale of 125%
EyeDropperWindowsAdorner.cs protected override void OnRender(DrawingContext drawingContext) { .. .. // ToDo Scalefactor transformGroup.Children.Add(new TranslateTransform(Position.X/1.25, Position.Y/1.25));
and in EyeDropperWindow.xaml.cs protected override void OnMouseMove(MouseEventArgs e) { .. var pos = e.GetPosition(this); // ToDo Scalefactor pos.X = pos.X*1.25; pos.Y = pos.Y * 1.25;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
if we have a Screen Scale in Settings Control System -> Dispay -> Scale
of 125%
EyeDropperWindowsAdorner.cs
protected override void OnRender(DrawingContext drawingContext)
{
..
..
// ToDo Scalefactor
transformGroup.Children.Add(new TranslateTransform(Position.X/1.25, Position.Y/1.25));
and in
EyeDropperWindow.xaml.cs
protected override void OnMouseMove(MouseEventArgs e)
{
..
var pos = e.GetPosition(this);
// ToDo Scalefactor
pos.X = pos.X*1.25; pos.Y = pos.Y * 1.25;
The text was updated successfully, but these errors were encountered: