XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFEExtension.NetCore.InputSimulator

【DLL】XFE各类拓展的模拟键盘输入

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/XFEExtension.NetCore.InputSimulator

优化ClipboardFormat.cs注释中的消息引用方式

将对ClipboardMessages常量的cref引用替换为代码格式(如<c>WM_ASKCBFORMATNAME</c>),提升注释可读性和兼容性,并调整部分注释的cref引用。

678a5fe
XFE工作室室长 <mail@xfegzs.com>
提交于

代码差异

1 个文件 +5 -5
Modified XFEExtension.NetCore.InputSimulator/ClipboardFormat.cs +5 -5
@@ -114,9 +114,9 @@ public static class ClipboardFormat
114 114
115 115 /// <summary>
116 116 /// Owner-display format. The clipboard owner must display and update the clipboard viewer window, and receive
117 /// the <see cref="ClipboardMessages.WM_ASKCBFORMATNAME"/>, <see cref="ClipboardMessages.WM_HSCROLLCLIPBOARD"/>,
118 /// <see cref="ClipboardMessages.WM_PAINTCLIPBOARD"/>, <see cref="ClipboardMessages.WM_SIZECLIPBOARD"/>, and
119 /// <see cref="ClipboardMessages.WM_VSCROLLCLIPBOARD"/> messages. The <c>hMem</c> parameter must be <c>null</c>.
117 /// the <c>WM_ASKCBFORMATNAME</c>, <c>WM_HSCROLLCLIPBOARD</c>,
118 /// <c>WM_PAINTCLIPBOARD</c>, <c>WM_SIZECLIPBOARD</c>, and
119 /// <c>WM_VSCROLLCLIPBOARD</c> messages. The <c>hMem</c> parameter must be <c>null</c>.
120 120 /// </summary>
121 121 public const uint CF_OWNERDISPLAY = 0x0080;
122 122
@@ -162,7 +162,7 @@ public static class ClipboardFormat
162 162 /// Start of a range of integer values for private clipboard formats. The range ends with
163 163 /// <see cref="CF_PRIVATELAST"/>. Handles associated with private clipboard formats are not freed
164 164 /// automatically; the clipboard owner must free such handles, typically in response to the
165 /// <see cref="ClipboardMessages.WM_DESTROYCLIPBOARD"/> message.
165 /// <c>WM_DESTROYCLIPBOARD</c> message.
166 166 /// </summary>
167 167 public const uint CF_PRIVATEFIRST = 0x0200;
168 168
@@ -170,4 +170,4 @@ public static class ClipboardFormat
170 170 /// See <see cref="CF_PRIVATEFIRST"/>.
171 171 /// </summary>
172 172 public const uint CF_PRIVATELAST = 0x02FF;
173 }
173 }