zoukankan      html  css  js  c++  java
  • WPF获取鼠标点击位置和API使用

    private void button2_Click(object sender, RoutedEventArgs e)//获取位置

            {
                POINT p = new POINT();

                Point pp = Mouse.GetPosition(e.Source as FrameworkElement);//WPF方法
                Point ppp = (e.Source as FrameworkElement).PointToScreen(pp);//WPF方法

                if (GetCursorPos(out p))//API方法
                {
                    MessageBox.Show(string.Format("GetCursorPos {0},{1}  GetPosition {2},{3} {4},{5}", p.X, p.Y, pp.X, pp.Y, ppp.X, ppp.Y));
                }
            }

            /// <summary>   
            /// 设置鼠标的坐标   
            /// </summary>   
            /// <param name="x">横坐标</param>   
            /// <param name="y">纵坐标</param>   
            [DllImport("User32")]
            public extern static void SetCursorPos(int x, int y);
            public struct POINT
            {
                public int X;
                public int Y;
                public POINT(int x, int y)
                {
                    this.X = x;
                    this.Y = y;
                }
            }

            /// <summary>   
            /// 获取鼠标的坐标   
            /// </summary>   
            /// <param name="lpPoint">传址参数,坐标point类型</param>   
            /// <returns>获取成功返回真</returns>   
            [DllImport("user32.dll", CharSet = CharSet.Auto)]
            public static extern bool GetCursorPos(out POINT pt);

    至少证明我们还活着
  • 相关阅读:
    MySQL 基础 查询
    Mysql+keepalived双主
    Kubernetes(二)K8S基础架构
    Kubernetes(一)K8S入门
    Docker (五) 利用Dockerfile创建Nginx镜像
    Docker (四) 使用Dockerfile的方式构建镜像
    Docker (三) 使用commit创建Docker镜像
    Docker (二) Docker网络配置
    Ansible (四) 角色Roles
    Docker (一) Docker入门
  • 原文地址:https://www.cnblogs.com/pengde/p/8491733.html
Copyright © 2011-2022 走看看