使用微信PC端的截图dll库实现微信截图功能

2025-05-29 0 26

本文实例为大家分享了截图dll库实现微信截图功能 ,供大家参考,具体内容如下

ScreenForm.cs代码:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133
using System;

using System.Collections.Generic;

using System.Runtime.InteropServices;

using System.Windows.Forms;

namespace screenT

{

public partial class ScreenForm : Form

{

public ScreenForm()

{

InitializeComponent();

}

private void ScreenCapture()

{

DLL.PrScrn();

}

protected override void WndProc(ref Message m)

{

base.WndProc(ref m);

Hotkey.ProcessHotKey(m);

}

private void button1_Click(object sender, EventArgs e)

{

DLL.PrScrn();

}

private void Form1_Load(object sender, EventArgs e)

{

//注册热键(窗体句柄,热键ID,辅助键,实键)

try

{

Hotkey.Regist(Handle, HotkeyModifiers.MOD_ALT, Keys.F1, ScreenCapture);

}

catch (Exception te)

{

MessageBox.Show("Alt + A 热键被占用");

}

}

private void Form1_FormClosed(object sender, FormClosedEventArgs e)

{

//注消热键(句柄,热键ID)

Hotkey.UnRegist(Handle, ScreenCapture);

}

}

public class DLL

{

[DllImport("PrScrn.dll", EntryPoint = "PrScrn")]

public static extern int PrScrn(); //与dll中一致

}

public static class Hotkey

{

#region 系统api

[DllImport("user32.dll")]

[return: MarshalAs(UnmanagedType.Bool)]

private static extern bool RegisterHotKey(IntPtr hWnd, int id, HotkeyModifiers fsModifiers, Keys vk);

[DllImport("user32.dll")]

private static extern bool UnregisterHotKey(IntPtr hWnd, int id);

#endregion

public delegate void HotKeyCallBackHanlder();

private const int WM_HOTKEY = 0x312;

private static int keyid = 10;

private static readonly Dictionary<int, HotKeyCallBackHanlder> keymap =

new Dictionary<int, HotKeyCallBackHanlder>();

/// <summary>

/// 注册快捷键

/// </summary>

/// <param name="hWnd">持有快捷键窗口的句柄</param>

/// <param name="fsModifiers">组合键</param>

/// <param name="vk">快捷键的虚拟键码</param>

/// <param name="callBack">回调函数</param>

public static void Regist(IntPtr hWnd, HotkeyModifiers fsModifiers, Keys vk, HotKeyCallBackHanlder callBack)

{

int id = keyid++;

if (!RegisterHotKey(hWnd, id, fsModifiers, vk))

throw new Exception("regist hotkey fail.");

keymap[id] = callBack;

}

/// <summary>

/// 注销快捷键

/// </summary>

/// <param name="hWnd">持有快捷键窗口的句柄</param>

/// <param name="callBack">回调函数</param>

public static void UnRegist(IntPtr hWnd, HotKeyCallBackHanlder callBack)

{

foreach (var var in keymap)

{

if (var.Value == callBack)

UnregisterHotKey(hWnd, var.Key);

}

}

/// <summary>

/// 快捷键消息处理

/// </summary>

public static void ProcessHotKey(Message m)

{

if (m.Msg == WM_HOTKEY)

{

int id = m.WParam.ToInt32();

HotKeyCallBackHanlder callback;

if (keymap.TryGetValue(id, out callback))

{

callback();

}

}

}

}

public enum HotkeyModifiers

{

MOD_ALT = 0x1,

MOD_CONTROL = 0x2,

MOD_SHIFT = 0x4,

MOD_WIN = 0x8

}

}

使用微信PC端的截图dll库实现微信截图功能

运行结果如图:

使用微信PC端的截图dll库实现微信截图功能

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持快网idc。

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 使用微信PC端的截图dll库实现微信截图功能 https://www.kuaiidc.com/99672.html

相关文章

发表评论
暂无评论