Windows XP 控制面板 - 为“评论”提供值场地
Windows XP 控制面板从哪里获取“注释”字段的值?我正在编写一个 EXE 控制面板应用程序,但它没有出现在 文档,您可以为该字段提供一个值。
Where does the Windows XP control panel get the value for the "Comments" field from? I'm writing an EXE control panel application, and it doesn't appear from the documentation that you can provide a value for that field.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 Windows Installer XML (WIX) 在 Windows Vista 上将可执行文件 (exe) 注册为控制面板小程序,网址为 链接
[先前的答案]
请参阅注册控制面板项目的可执行控制面板项目注册 >位于http://msdn.microsoft.com/en -us/library/cc144195(VS.85).aspx
具体来说,您需要
InfoTip
,即注释。Registering an Executable File (exe) as a Control Panel Applet on Windows Vista using Windows Installer XML (WIX) at Link
[previous answer]
See the Executable Control Panel Item Registration of Registering Control Panel Items at http://msdn.microsoft.com/en-us/library/cc144195(VS.85).aspx
Specifically, you want
InfoTip
, which is the comments.使用 CPLApplet:
您需要处理CPL_INQUIRE消息并填写 CPLINFO 结构。
idInfo
是包含描述的字符串的资源标识符。你不能简单地通过填写一些注册表项来设置这个东西。编辑:好吧,我的错,这是一个旧的解决方案。
Using CPLApplet:
You need to handle CPL_INQUIRE Message and fill the CPLINFO Structure.
idInfo
is the resource identifier of the string containing the description. You cannot simply set this thing by filling in some registry key.Edit: Ok, my bad, this is an old solution.
该字符串是从 HKCR\CLSID{guid}\InfoTip 注册表值中检索的。 MSDN 库文章,我可以补充的不多。
This string is retrieved from the HKCR\CLSID{guid}\InfoTip registry value. How to whack the registry into shape is explained very well in this MSDN Library article, not much I can add to that.