------ #### MyDbV4 V3.0.2107.2901 - *.[新增]新增支持计算文件MD5。 - *.[新增]部分DataProvider功能移植到DbExtension里,增加扩展性。 - *.[新增]UnixTimeToDateTime和JSTimeToDateTime新增支持long参数。 - *.[合并]合并RyWeb项目到MyDb里。 #### ryControlsV4 V3.0.2107.2901 - *.[改进]优化减少大量IDE警告和消息。
		
			
				
	
	
		
			125 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			125 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Runtime.InteropServices;
 | |
| 
 | |
| namespace Sheng.Winform.Controls.Win32
 | |
| {
 | |
|     /// <summary>
 | |
|     /// 
 | |
|     /// </summary>
 | |
|     public static class User32
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// WM_COPYDATA消息所要求的数据结构
 | |
|         /// </summary>
 | |
|         public struct CopyDataStruct
 | |
|         {
 | |
|             /// <summary>
 | |
|             /// 
 | |
|             /// </summary>
 | |
|             public IntPtr dwData;
 | |
|             /// <summary>
 | |
|             /// 
 | |
|             /// </summary>
 | |
|             public int cbData;
 | |
|             /// <summary>
 | |
|             /// 
 | |
|             /// </summary>
 | |
|             [MarshalAs(UnmanagedType.LPStr)]
 | |
|             public string lpData;
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
| 
 | |
|         public const int WM_COPYDATA = 0x004A;
 | |
| 
 | |
|         /// <summary>
 | |
|         /// 通过窗口的标题来查找窗口的句柄
 | |
|         /// </summary>
 | |
|         /// <param name="lpClassName"></param>
 | |
|         /// <param name="lpWindowName"></param>
 | |
|         /// <returns></returns>
 | |
|         [DllImport("User32.dll", EntryPoint = "FindWindow")]
 | |
|         public static extern int FindWindow(string lpClassName, string lpWindowName);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// 发送 Windows 消息
 | |
|         /// </summary>
 | |
|         /// <param name="hWnd"></param>
 | |
|         /// <param name="Msg"></param>
 | |
|         /// <param name="wParam"></param>
 | |
|         /// <param name="lParam"></param>
 | |
|         /// <returns></returns>
 | |
|         [DllImport("User32.dll", EntryPoint = "SendMessage")]
 | |
|         public static extern int SendMessage
 | |
|             (
 | |
|             int hWnd,                        // 目标窗口的句柄  
 | |
|             int Msg,                        // 在这里是WM_COPYDATA
 | |
|             int wParam,                    // 第一个消息参数
 | |
|             ref  CopyDataStruct lParam        // 第二个消息参数
 | |
|             );
 | |
| 
 | |
|         /// <summary>
 | |
|         /// 还原
 | |
|         /// </summary>
 | |
|         public const int SC_RESTORE = 0xF120; //还原
 | |
|         /// <summary>
 | |
|         /// 移动
 | |
|         /// </summary>
 | |
|         public const int SC_MOVE = 0xF010; //移动
 | |
|         /// <summary>
 | |
|         /// 大小
 | |
|         /// </summary>
 | |
|         public const int SC_SIZE = 0xF000; //大小
 | |
|         /// <summary>
 | |
|         /// 最小化
 | |
|         /// </summary>
 | |
|         public const int SC_MINIMIZE = 0xF020; //最小化
 | |
|         /// <summary>
 | |
|         /// 最大化
 | |
|         /// </summary>
 | |
|         public const int SC_MAXIMIZE = 0xF030; //最大化
 | |
|         /// <summary>
 | |
|         /// 关闭
 | |
|         /// </summary>
 | |
|         public const int SC_CLOSE = 0xF060; //关闭
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public const int MF_DISABLE = 0x1;
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public const int MF_ENABLE = 0x0;
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         /// <param name="hWnd"></param>
 | |
|         /// <param name="bRevert"></param>
 | |
|         /// <returns></returns>
 | |
|         [DllImport("user32.dll")]
 | |
|         public static extern IntPtr GetSystemMenu(IntPtr hWnd, bool bRevert);
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         /// <param name="hMenu"></param>
 | |
|         /// <param name="wIDEnableItem"></param>
 | |
|         /// <param name="wEnable"></param>
 | |
|         /// <returns></returns>
 | |
|         [DllImport("user32.dll")]
 | |
|         public static extern int EnableMenuItem(IntPtr hMenu, int wIDEnableItem, int wEnable);
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public const int WM_PAINT = 0x000f;
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public const int WM_ERASEBKGND = 0x0014;
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public const int WM_NCPAINT = 0x0085;
 | |
|     }
 | |
| }
 |