如何制作 16x16 像素图标大小的符号按钮?

发布于 2024-10-15 17:48:54 字数 380 浏览 3 评论 0原文

我尝试用MFC制作一个符号按钮。图标资源 (*.ico) 的大小为 16x16 像素。当我将图标加载到按钮中时,图标显示为原来的两倍。你知道如何指定按钮表面上绘制的图标的大小吗?

我正在使用的代码片段:

CButton* btn = reinterpret_cast<CButton*>(GetDlgItem(IDC_BUTTON_RUNTER));
btn->SetIcon(AfxGetApp()->LoadIconA(MAKEINTRESOURCE(IDI_RUNTER)));

在此处输入图像描述

感谢您的帮助!

I tried to make a Symbol Button with MFC. The Icon-Resource (*.ico) has a size of 16x16 pixels. When I load the icon into the button, the icon appears twice as large. Do you know how I can specify the size of the icon drawn onto the button-surface?

The Code Fragment I'm using:

CButton* btn = reinterpret_cast<CButton*>(GetDlgItem(IDC_BUTTON_RUNTER));
btn->SetIcon(AfxGetApp()->LoadIconA(MAKEINTRESOURCE(IDI_RUNTER)));

enter image description here

Thanks for your help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独木成林 2024-10-22 17:48:54

You can use LoadImage instead of LoadIcon which will allow you to specify the size.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文