WPF封装一个鼠标事件控件界面框选的功能

WPF封装一个鼠标事件控件界面框选的功能

  1. 基类定义Mouse的状态方法,以及把界面控件传入
csharp 复制代码
   public abstract class MouseEventBase<T> where T : UserControl
   {
       public MouseEventBase(T associatedControl, Rectangle rect)
       {
           map = associatedControl;
           SelectionRect = rect;
       }

       public MouseEventBase(T associatedControl, Canvas canvas)
       {
           map = associatedControl;
           SelectionPolygon = canvas;
       }

       protected T map { get; private set; }

       protected Rectangle? SelectionRect;
       protected Canvas? SelectionPolygon;
       protected double Width => map.ActualWidth;
       protected double Height => map.ActualHeight;
       public ToolMode PageMode { get; set; }

       public virtual void MouseDown(Point imageLocation, Point mapLocation) { }
       public virtual void MouseMove(Point imageLocation, Point mapLocation) { }
       public virtual void MouseUp(Point imageLocation, Point mapLocation) { }
   }
  1. 框选交互的基类
csharp 复制代码
  /// <summary>
  /// 框选基类
  /// </summary>
  public abstract class BoxSelectionBase : MouseEventBase<UserControl>
  {
      /// <summary>
      /// 是否是正常框选,或者反向框选
      /// </summary>
      protected bool BoxDirection = true;

      private Point startPoint;

      public BoxSelectionBase(UserControl map, Rectangle rect) : base(map, rect)
      {
          PageMode = ToolMode.None;
          SelectionRect = rect;
      }

      public override void MouseDown(Point imageLocation, Point mapLocation)
      {
          startPoint = mapLocation;
          SelectionRect!.Width = 0;
          SelectionRect.Height = 0;
          // 显示选择框
          SelectionRect.Visibility = Visibility.Visible;
          SelectionRect.Margin = new Thickness(startPoint.X, startPoint.Y, 0, 0);
          SelectionRect.Width = 0;
          SelectionRect.Height = 0;
      }
      public override void MouseMove(Point imageLocation, Point mapLocation)
      {
          var minX = startPoint.X < mapLocation.X ? startPoint.X : mapLocation.X;
          var minY = startPoint.Y < mapLocation.Y ? startPoint.Y : mapLocation.Y;
          var maxX = startPoint.X > mapLocation.X ? startPoint.X : mapLocation.X;
          var maxY = startPoint.Y > mapLocation.Y ? startPoint.Y : mapLocation.Y;

          var left = Math.Max(0, Math.Min(minX, Width));
          var top = Math.Max(0, Math.Min(minY, Height));
          maxX = Math.Max(0, Math.Min(maxX, Width));
          maxY = Math.Max(0, Math.Min(maxY, Height));
          var width = maxX - left;
          var height = maxY - top;

          SelectionRect!.Margin = new Thickness(left, top, 0, 0);
          SelectionRect.Width = width;
          SelectionRect.Height = height;

          BoxDirection = mapLocation.X >= startPoint.X;
      }

      public override void MouseUp(Point imageLocation, Point mapLocation)
      {
          SelectionRect!.Visibility = Visibility.Collapsed;
      }
  1. 实际使用只需要继承Mouse状态加上自己的功能即可,绘制功能在基类中完成了
相关推荐
The Sheep 202320 小时前
WPF自定义路由事件
大数据·hadoop·wpf
阳光雨滴20 小时前
使用wpf用户控件编程落石效果动画
c++·wpf
wuty00721 小时前
WPF 调用 ChangeWindowMessageFilterEx 修改指定窗口 (UIPI) 消息筛选器的用户界面特权隔离
wpf·sendmessage·changewindowmessagefilterex·uip·消息筛选器的用户界面特权隔离·window message
攻城狮CSU1 天前
WPF中核心接口 INotifyPropertyChanged
wpf
c#上位机1 天前
wpf之Interaction.Triggers
c#·wpf
是木子啦1 天前
wpf passwordbox控件 光标移到最后
c#·wpf
The Sheep 20231 天前
wpf 命令理解
wpf
布伦鸽1 天前
C# WPF DataGrid使用Observable<Observable<object>类型作为数据源
开发语言·c#·wpf
分布式存储与RustFS2 天前
告别复杂配置:用Milvus、RustFS和Vibe Coding,60分钟DIY专属Chatbot
wpf·文件系统·milvus·对象存储·minio·rustfs·vibe
攻城狮CSU2 天前
WPF 绑定机制实现原理
wpf