程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> EyesBaby功能實現之Windows前景色調節器

EyesBaby功能實現之Windows前景色調節器

編輯:關於.NET

其實所謂Windows前景色調節器就是利用Winform窗體遮蓋整個Windows區域。主要要求實現窗口透明,且鼠標可以穿過窗體點擊其他程序。

難點就是怎麼樣讓鼠標穿透窗體,代碼也是從網上找的,現在找不到原鏈接了:)

原理就是調用Windows API設置窗口的屬性。

代碼:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
/*
  * 作者:Billy Qing
  * 日期:2009年11月20日
  * 說明:EyesBaby Windows 前景窗口。
  * 版本:1.0
  */
namespace EyesBaby
{
     public partial class WinScreenAdjust : Form
     {
         /*
          * 下面這段代碼主要用來調用Windows API實現窗體透明(鼠標可以穿透窗體)
          *  也是從網上找的:)
          */
         [DllImport("user32.dll", EntryPoint = "GetWindowLong")]
         public static extern long GetWindowLong(IntPtr hwnd, int nIndex);
         [DllImport("user32.dll", EntryPoint = "SetWindowLong")]
         public static extern long SetWindowLong(IntPtr hwnd, int nIndex, long dwNewLong);
         [DllImport("user32", EntryPoint = "SetLayeredWindowAttributes")]
         private static extern int SetLayeredWindowAttributes(IntPtr Handle, int crKey, byte bAlpha, int dwFlags);
         const int GWL_EXSTYLE = -20;
         const int WS_EX_TRANSPARENT = 0x20;
         const int WS_EX_LAYERED = 0x80000;
         const int LWA_ALPHA = 2;
         public WinScreenAdjust()
         {
             InitializeComponent();
         }
         private void Form1_Load(object sender, EventArgs e)
         {
             // 取消窗體任務欄
             ShowInTaskbar = false;
             // 窗體位於Windows最頂部
             this.TopMost = true;
             // 去除窗體邊框
             this.FormBorderStyle = FormBorderStyle.None;
             // 設置窗體最大化大小(除底部任務欄部分)
             this.MaximumSize = new Size(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height);
             // 設置Windows窗口狀態為最大化模式
             this.WindowState = FormWindowState.Maximized;
             // 設置Windows屬性
             SetWindowLong(this.Handle, GWL_EXSTYLE, GetWindowLong(this.Handle, GWL_EXSTYLE) | WS_EX_TRANSPARENT | WS_EX_LAYERED);
             SetLayeredWindowAttributes(this.Handle, 0, 128, LWA_ALPHA);
         }
     }
}

至於EyesBaby中給窗體設置顏色部分就比較簡單了。

代碼:

// 打開顏色選擇對話框 ,並分析是否選擇了對話框中的確定按鈕 
             if (this.colColorAdjust.ShowDialog() == DialogResult.OK)
             {
                 int[] item=colColorAdjust.CustomColors;
                 // 將先中的顏色設置為窗體的背景色
                 this.winAdjust.BackColor = colColorAdjust.Color;
                 // 保存到配置文件
                 ConfigHelper.WinForeColor = this.winAdjust.BackColor.Name;
             }

出處:http://yizhuqing.cnblogs.com/

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved