在哪里可以找到 Windows 7 UX 指南中推荐的图标/动画?
Windows 7 UX 指南有很好的插图和图标示例,但我在 SDK 中确实找不到它们。他们藏在某个地方,还是找不到?
The Windows 7 UX guide has nice illustrations and examples of icons, but I really can't find them in the SDK. Are they hiding somewhere, or are they not available ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您谈论的是常见的 UI 图标,那么您应该以编程方式获取它们。例如,您可以使用
(Delphi 代码)绘制错误图标。
请参阅
LoadIcon
,DrawIcon
(位于 MSDN)。您可能还希望研究STATIC
控件。要绘制其他视觉元素,您需要使用视觉主题 API,例如
DrawThemeBackground
函数接受类、部件和状态,然后绘制它:If you are talking about the common UI icons, then you are supposed to get them programmatically. For instance, you can use
(Delphi code) to draw an error icon.
See
LoadIcon
,DrawIcon
at MSDN. You might also wish to studySTATIC
controls.To draw other visual elements, you need to use the visual themes API, e.g. the
DrawThemeBackground
function that accepts a class, part, and state and then draws it:SHGetStockIconInfo 有一个不错的系统列表图标。
SHGetStockIconInfo has a decent list of system icons.