WPF 自定义放大镜控件

控件名:Magnifier

作   者:WPFDevelopersOrg - 驚鏵

原文链接[1]:https://github.com/WPFDevelopersOrg/WPFDevelopers

  • 框架使用.NET40

  • Visual Studio 2019;

  • 实现此功能需要用到 VisualBrush ,放大镜展现使用 Canvas -> Ellipse .

    • 可以使用 VisualBrush 创建放大效果。

    • 设置 Visual 获取或设置画笔的内容。

    • 设置 ViewboxUnits Absolute 坐标系与边界框无关。

    • 设置 Viewbox 获取或设置 TileBrush 图块中内容的位置和尺寸。

  • 当鼠标移动获取当前坐标点修改 VisualBrushViewbox

  • 鼠标移动修改 EllipseCanvas.LeftCanvas.Top 跟随鼠标。

  • 接着上一篇把放大镜做成控件方便使用。

  • 新建Magnifier获取父控件,为父控件创建装饰器把Magnifier添加到装饰器Child

  • 需注意当鼠标移动获取在父控件上获取 Visual 的偏移量 VisualTreeHelper.GetOffset

cf0231884abbb30c9b33bef10f804f58.png

1) Magnifier.xaml 代码如下:

<Style TargetType="{x:Type controls:Magnifier}" BasedOn="{StaticResource ControlBasicStyle}"><Setter Property="HorizontalAlignment" Value="Left"/><Setter Property="VerticalAlignment" Value="Top"/><Setter Property="IsHitTestVisible" Value="False" /><Setter Property="Width" Value="200"/><Setter Property="Height" Value="200"/><Setter Property="BorderThickness" Value="8"/><Setter Property="BorderBrush" Value="{DynamicResource PrimaryNormalSolidColorBrush}"/><Setter Property="Template"><Setter.Value><ControlTemplate TargetType="{x:Type controls:Magnifier}"><Canvas Name="PART_Canvas"><Borderx:Name="PART_Border"BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}"Height="{TemplateBinding Height}" Width="{TemplateBinding Height}"CornerRadius="{TemplateBinding CornerRadius}"><Ellipse><Ellipse.Fill><VisualBrush x:Name="PART_VisualBrush"Visual="{Binding ParentTarget,RelativeSource={RelativeSource TemplatedParent}}" ViewboxUnits="Absolute" /></Ellipse.Fill></Ellipse></Border></Canvas></ControlTemplate></Setter.Value></Setter></Style>

2) Magnifier.xaml.cs 代码如下:

using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using WPFDevelopers.Utilities;namespace WPFDevelopers.Controls
{[TemplatePart(Name = BorderTemplateName, Type = typeof(Border))][TemplatePart(Name = VisualBrushTemplateName, Type = typeof(VisualBrush))]public class Magnifier : Control{private const string BorderTemplateName = "PART_Border";private const string VisualBrushTemplateName = "PART_VisualBrush";public static Magnifier Default = new Magnifier();public static readonly DependencyProperty CornerRadiusProperty =DependencyProperty.Register("CornerRadius", typeof(CornerRadius), typeof(Magnifier), new PropertyMetadata(new CornerRadius(0)));public static readonly DependencyProperty ParentTargetProperty =DependencyProperty.Register("ParentTarget", typeof(FrameworkElement), typeof(Magnifier),new PropertyMetadata(default, OnParentTargetChanged));public static readonly DependencyProperty AddProperty =DependencyProperty.RegisterAttached("Add", typeof(Magnifier), typeof(Magnifier),new PropertyMetadata(default, OnAddChanged));private AdornerContainer _adornerContainer;private Border _border;private double _factor = 0.5;private VisualBrush _visualBrush = new VisualBrush();public CornerRadius CornerRadius{get => (CornerRadius)GetValue(CornerRadiusProperty);set => SetValue(CornerRadiusProperty, value);}public FrameworkElement ParentTarget{get => (FrameworkElement)GetValue(ParentTargetProperty);set => SetValue(ParentTargetProperty, value);}private static void OnParentTargetChanged(DependencyObject d, DependencyPropertyChangedEventArgs e){var magnifier = (Magnifier)d;magnifier.OnParentTargetChanged((FrameworkElement)e.NewValue);}private void OnParentTargetChanged(FrameworkElement element){if (element == null) return;element.Unloaded -= Element_Unloaded;element.Unloaded += Element_Unloaded;element.MouseEnter -= Element_MouseEnter;element.MouseEnter += Element_MouseEnter;element.MouseLeave -= Element_MouseLeave;element.MouseLeave += Element_MouseLeave;element.MouseMove -= Element_MouseMove;element.MouseMove += Element_MouseMove;element.MouseWheel -= Element_MouseWheel;element.MouseWheel += Element_MouseWheel;}private void Element_MouseWheel(object sender, MouseWheelEventArgs e){if (e.Delta > 0)_factor -= 0.2;else_factor += 0.2;_factor = _factor < 0.2 ? 0.2 : _factor;_factor = _factor > 1 * 4 ? 4 : _factor;MoveMagnifier();}private void Element_MouseLeave(object sender, MouseEventArgs e){if (_adornerContainer == null) return;var layer = AdornerLayer.GetAdornerLayer(ParentTarget);if (layer != null) layer.Remove(_adornerContainer);if (_adornerContainer != null){_adornerContainer.Child = null;_adornerContainer = null;}}private void Element_Unloaded(object sender, RoutedEventArgs e){if (sender is FrameworkElement element)element.Unloaded -= Element_Unloaded;}private void Element_MouseMove(object sender, MouseEventArgs e){MoveMagnifier();}private void MoveMagnifier(){if (_border == null) return;var length = Width * _factor;var radius = length / 2;var parentTargetPoint = Mouse.GetPosition(ParentTarget);var parentTargetVector = VisualTreeHelper.GetOffset(ParentTarget);var size = new Size(length, length);var viewboxRect =new Rect(new Point(parentTargetPoint.X - radius + parentTargetVector.X,parentTargetPoint.Y - radius + parentTargetVector.Y), size);_visualBrush.Viewbox = viewboxRect;var adornerPoint = Mouse.GetPosition(_adornerContainer);_border.SetValue(Canvas.LeftProperty, adornerPoint.X - Width / 2);_border.SetValue(Canvas.TopProperty, adornerPoint.Y - Height / 2);}private void Element_MouseEnter(object sender, MouseEventArgs e){ParentTarget.Cursor = Cursors.Cross;if (_adornerContainer == null){var layer = AdornerLayer.GetAdornerLayer(ParentTarget);if (layer == null) return;_adornerContainer = new AdornerContainer(layer){Child = this};layer.Add(_adornerContainer);}}public static Magnifier GetAdd(DependencyObject obj){return (Magnifier)obj.GetValue(AddProperty);}public static void SetAdd(DependencyObject obj, int value){obj.SetValue(AddProperty, value);}private static void OnAddChanged(DependencyObject d, DependencyPropertyChangedEventArgs e){if (d is FrameworkElement parent){var element = (Magnifier)e.NewValue;element.OnAddChanged(parent);}}private void OnAddChanged(FrameworkElement parent){ParentTarget = parent;}public override void OnApplyTemplate(){base.OnApplyTemplate();CornerRadius = new CornerRadius(Width / 2);_border = GetTemplateChild(BorderTemplateName) as Border;_visualBrush = GetTemplateChild(VisualBrushTemplateName) as VisualBrush ?? new VisualBrush();}}
}

1) MagnifierExample.xaml 代码如下:

<Image Source="/Images/Craouse/0.jpg" Stretch="None"wpfdev:Magnifier.Add="{x:Static wpfdev:Magnifier.Default}"/>
0dff2df6225825f4442c9e7b6c540a9f.gif

参考资料

[1]

原文链接: https://github.com/WPFDevelopersOrg/WPFDevelopers

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/279837.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

.NET实现之(WebBrowser数据采集—续篇)

我们继续“.NET实现之(WebBrowser数据采集)“系列篇之最后一篇&#xff0c;这篇本人打算主要讲解怎么用WebBrowser控件来实现“虚拟”的交互性程序&#xff1b;比如我们用Winform做为宿主容器&#xff0c;用Asp.net做相关收集程序页面&#xff0c;我们需要通过客户端填写相关数…

ipad和iphone切图_如何在iPhone,iPad和Mac上使消息静音

ipad和iphone切图If you use Messages on your iPhone, iPad, or Mac, then you probably know how quickly you can become overrun with message notifications, especially if you’re part of a group message. Thankfully, there’s an easy way to mute specific message…

Pipy 实现 SOCKS 代理

上篇我们介绍了服务网格 osm-edge 出口网关使用的 HTTP 隧道&#xff0c;其处理方式与另一种代理有点类似&#xff0c;就是今天要介绍的 SOCKS 代理。二者的主要差别简单来说就是前者使用 HTTP CONNECT 告知代理目的地址&#xff0c;而后者则是通过 SOCKS 协议。值得一提的是&a…

python拓展7(Celery消息队列配置定时任务)

介绍 celery 定时器是一个调度器&#xff08;scheduler&#xff09;&#xff1b;它会定时地开启&#xff08;kicks off&#xff09;任务&#xff0c;然后由集群中可用的工人&#xff08;worker&#xff09;来执行。 定时任务记录&#xff08;entries&#xff09;默认 从 beat_s…

chrome连接已重置_如何重置(或调整)Chrome的下载设置

chrome连接已重置By default, Chrome saves all downloaded files to the same location—a dedicated “Downloads” folder. The thing is, this isn’t always practical for all types of download files. The good news is you can easily tweak this setting. 默认情况下…

.Net 7 团队把国内的龙芯确实当做一等公民和弃用的项目

楔子&#xff1a;国内龙芯据说是用的自己的指令集&#xff0c;在研究ILC的时候&#xff0c;发现了龙芯在微软那边确实是一等公民的存在。同X64,ARM,X86一同并列交叉编译和二进制提取。龙芯官网龙芯平台.NET&#xff0c;是龙芯公司基于开源社区.NET独立研发适配的龙芯版本&#…

戴尔押宝iSCSI,由低到高组合成型

戴尔&#xff08;Dell&#xff09;是较早接受SAS技术的主流存储厂商之一&#xff0c;2006年已推出采用SAS硬盘驱动器的SAS直连存储&#xff08;DAS&#xff09;系统PowerVault MD3000。一年之后&#xff0c;主机连接改用iSCSI的PowerVault MD3000i问世。2008年1月&#xff0c;E…

word中插入公式的快捷键_如何使用插入键在Word中插入复制的内容

word中插入公式的快捷键In Word, the “Insert” key on the keyboard can be used to switch between Insert and Overtype modes. However, it can also be used as a shortcut key for inserting copied or cut content at the current cursor position. 在Word中&#xff0…

微软终于为 Visual Studio 添加了内置的 Markdown 编辑器

微软终于为 Visual Studio 添加了内置的 Markdown 编辑器。根据官方博客的介绍&#xff0c;由于收到许多用户的反馈&#xff0c;微软决定为 Visual Studio 添加 Markdown 编辑器。开发者下载最新的 Visual Studio 17.5 第 2 个预览版就能够使用 Markdown 编辑功能&#xff0c;无…

【经验分享】Hydra(爆破神器)使用方法

这个也是backtrack下面很受欢迎的一个工具 参数详解&#xff1a;-R 根据上一次进度继续破解-S 使用SSL协议连接-s 指定端口-l 指定用户名-L 指定用户名字典(文件)-p 指定密码破解-P 指定密码字典(文件)-e 空密码探测和指定用户密码探测(ns)-C 用户名可以用:分割(username:passw…

【东软实训】SQL多表链接

如果一个查询同时涉及两个以上的表&#xff0c;则称之为链接查询&#xff0c;链接查询是关系数据库中最主要的查询&#xff0c;主要包括等值链接查询、非等值链接查询、自身链接查询、外链接查询和复合条件链接查询。 这篇博文我们来对多表链接进行学习。 Outline 链接的基本概…

博鳌“‘AI+时代’来了吗”分论坛,嘉宾们有何重要观点?...

雷锋网(公众号&#xff1a;雷锋网)3月27日消息&#xff0c;正在进行中的博鳌亚洲论坛2019年年会&#xff0c;于2019年3月26日至29日在中国海南博鳌举办。今年博鳌论坛的主题为“共同命运 共同行动 共同发展”。今天&#xff0c;在主题为《“AI时代”来了吗&#xff1f;》分论坛…

一款统计摸鱼时长的开源项目

对于我们程序员&#xff0c;在工作中一天8小时&#xff0c;不可能完全在写代码了&#xff0c;累了刷刷论坛、群里吹吹牛&#xff0c;这都是非常正常的。虽然一天下来&#xff0c;可能我们都可以按时完成工作&#xff0c;但是我们不知道&#xff0c;时间都花在哪里了&#xff0c…

saltstack 主题说明

转载于:https://www.cnblogs.com/40kuai/p/9335869.html

基于spring boot 的ssm项目的简单配置

2019独角兽企业重金招聘Python工程师标准>>> 我前面的帖子有介绍spring boot的简单搭建&#xff0c;现在我再讲讲spring boot的简单配置 首先&#xff0c;项目结构 启动类 RestController 注解相当于ResponseBody &#xff0b; Controller合在一起的作用。 Sprin…

nest 架构_如何与其他人分享您的Nest Cam Feed

nest 架构Your Nest Cam can help you keep an eye on your home from anywhere you are, but more eyes you trust to watch your stuff is more comforting. If you want someone else to check in once in a while, you can share your Nest Cam feed with a simple, passwo…

.Net 和Assembly下滑其它回升,TIOBE编程语言2022年12排行榜

楔子TIOBE编程语言排行榜一般反应的是语言的生态&#xff0c;个人比较喜欢这个排行。来看下2022年最后一个月12月&#xff0c;最后一天,TIOBE的排行榜单。榜单分析这里只看下前10名的编程语言&#xff0c;里面非常显眼的是所有的语言都增加了生态环境&#xff0c;包括不被看好的…

Haproxy安装与配置

Haproxy安装与配置 有关高负载均衡的软件&#xff0c;目前使用比较多的是haproxy、nginx和lvs。下面我们就开始学习haprxoy这款软件。 1、Haproxy概念 1.1、haproxy原理 haproxy提供高可用性、负载均衡以及基于TCP(第四层)和HTTP&#xff08;第七层&#xff09;应用的代理&…

删除word中所有的表格_如何在Word中删除表格

删除word中所有的表格If you’ve inserted a table in Word and you now want to delete it, you may have found it’s not all that straightforward to delete the entire table without deleting other content around the table. We’ll show you a couple of ways around…

Jenkins在windows平台下,让Powershell和批处理可以拉起进程并保持

&#x1f4e2;欢迎点赞 &#xff1a;&#x1f44d; 收藏 ⭐留言 &#x1f4dd; 如有错误敬请指正&#xff0c;赐人玫瑰&#xff0c;手留余香&#xff01;&#x1f4e2;本文作者&#xff1a;由webmote 原创&#x1f4e2;作者格言&#xff1a;无尽的折腾后&#xff0c;终于又回到…