其他分享
首页 > 其他分享> > WPF开发的实用桌面管理小工具 ---- 系列文章

WPF开发的实用桌面管理小工具 ---- 系列文章

作者:互联网

目录

WPF 开发的实用小工具(附源码)持续更新(七)根据应用首个字的首字母按键定位 WPF 开发的实用小工具(附源码)持续更新(六)嵌入桌面 WPF 开发的实用小工具(附源码)持续更新(五)靠边隐藏 WPF 开发的实用小工具(附源码)持续更新(三)移除应用 WPF 开发的实用小工具(附源码)持续更新(二)拖动应用 WPF 开发的实用小工具(附源码)持续更新 

 

前言

看最近比较冷清,我来暖暖场。

 点击链接加入群聊

【update】

1、新增托盘。

2、新增换肤。

3、透明度切换。

环境

Visual Studio 2019,dotNet Framework 4.0 SDK

本项目采用MVVM模式。

1.获取主监视器上工作区域的尺寸。

2.并设置当前主窗体高度,设置窗体的Left与Top 到最右侧。

       private Rect desktopWorkingArea;       
       desktopWorkingArea = System.Windows.SystemParameters.WorkArea; this.Height = desktopWorkingArea.Height / 2; this.Left = desktopWorkingArea.Width - this.Width; this.Top = desktopWorkingArea.Height / 2 - (this.Height / 2);

 

 3.移动窗体只允许Y轴 移动,调用Win32 的 MoveWindow。

复制代码
 #region 移动窗体
        protected override void onm ouseLeftButtonDown(MouseButtonEventArgs e)
        {
            anchorPoint = e.GetPosition(this);
            inDrag = true;
            CaptureMouse();
            e.Handled = true;
        }
        
        protected override void onm ouseMove(MouseEventArgs e)
        {
            try
            {
                if (inDrag)
                {
                    System.Windows.Point currentPoint = e.GetPosition(this);
                    var y = this.Top + currentPoint.Y - anchorPoint.Y;
                    Win32Api.RECT rect;
                    Win32Api.GetWindowRect(new WindowInteropHelper(this).Handle, out rect);
                    var w = rect.right - rect.left;
                    var h = rect.bottom - rect.top;
                    int x = Convert.ToInt32(PrimaryScreen.DESKTOP.Width - w);

                    Win32Api.MoveWindow(new WindowInteropHelper(this).Handle, x, (int)y, w, h, 1);
                }
            }
            catch (Exception ex)
            {
                Log.Error($"MainView.OnMouseMove{ex.Message}");
            }
        }

        protected override void onm ouseLeftButtonUp(MouseButtonEventArgs e)
        {
            if (inDrag)
            {
                ReleaseMouseCapture();
                inDrag = false;
                e.Handled = true;
            }
        }
        #endregion
复制代码

4.在Tab键+Alt键切换时隐藏当前窗体。

复制代码
WindowInteropHelper wndHelper = new WindowInteropHelper(this);

            int exStyle = (int)Win32Api.GetWindowLong(wndHelper.Handle, (int)Win32Api.GetWindowLongFields.GWL_EXSTYLE);

            exStyle |= (int)Win32Api.ExtendedWindowStyles.WS_EX_TOOLWINDOW;
            Win32Api.SetWindowLong(wndHelper.Handle, (int)Win32Api.GetWindowLongFields.GWL_EXSTYLE, (IntPtr)exStyle);
复制代码

 

 5.在窗体加载完成去注册表读取安装的应用(还有系统桌面),获取应用路径后提取.ICO转换为.PNG保存。

 

 

6.剩下的代码都是wpf中的动画和自动定义控件的代码。

效果图预览

 2020/11/09

 新更新 滚动增加动画

 

github源码下载地址

gitee源码下载地址

下载解压后体验

 

出处:https://www.cnblogs.com/yanjinhua/p/13896894.html

标签:桌面,int,----,源码,窗体,WPF,rect,Win32Api
来源: https://www.cnblogs.com/mq0036/p/16519099.html