Windows Builder 使用总结

简介: Windows Builder 使用总结

从Eclipse MarketPlace 下载Windows Builder

所有控件的实例如下:

https://www.eclipse.org/swt/snippets/

 

1.如何提取可执行文件exe的图标

/** extract the exe file's icon */
public static Image getImage4exe(String path) {
    /* Use the character encoding for the default locale */
    TCHAR lpszFile = new TCHAR(0, path, true);
    long[] phiconSmall = new long[1];
    OS.ExtractIconEx(lpszFile, 0, null, phiconSmall, 1);
    if (phiconSmall[0] == 0) {
        return null;
    }
    Image ret = Image.win32_new(null, SWT.ICON, phiconSmall[0]);
    return ret;
}

看我在stackoverflow的答复:

How to display system icon for a file in SWT?

SWT/JFACE源码下载

目录
相关文章
|
Windows 内存技术 开发工具
windows 安装 flash builder 开发flex 4 项目
1,安装flash builder  flex开发工具。我使用的是4.6的版本。 sn可以使用: http://www.cnblogs.com/wangjiangze/archive/2012/03/28/2421789.html flash builder 扫盲问题: http://blog.csdn.net/hongtaodai/article/details/68855
1147 0
|
C++ Windows
windows 7 c++ builder 6 F1 帮助无法打开 解决办法
下载  Windows6.1-KB917607-x86.msu  补丁,百度也有
793 0
|
23天前
|
Linux Windows
Windows Server 下文件同步
Windows Server 下文件同步
16 0
|
2月前
|
安全 数据安全/隐私保护 Windows
解锁安全之门,Windows Server 2019密码修改攻略大揭秘
解锁安全之门,Windows Server 2019密码修改攻略大揭秘
|
2月前
|
存储 安全 网络安全
铁壁如墙-WINDOWS SERVER 2019勒索病毒终极防御指南
铁壁如墙-WINDOWS SERVER 2019勒索病毒终极防御指南
|
2月前
|
网络协议 数据安全/隐私保护 Windows
Windows Server 各版本搭建域控制器实现通过域管理用户(03~19)
Windows Server 各版本搭建域控制器实现通过域管理用户(03~19)
|
2月前
|
存储 数据安全/隐私保护 索引
Windows Server 各版本搭建文件服务器实现共享文件(03~19)
Windows Server 各版本搭建文件服务器实现共享文件(03~19)
|
2月前
|
数据安全/隐私保护 虚拟化 Windows
如何在 VM 虚拟机中安装 Windows Server 2012 操作系统保姆级教程(附链接)
如何在 VM 虚拟机中安装 Windows Server 2012 操作系统保姆级教程(附链接)
|
3天前
|
网络协议 Windows
Windows Server 各版本搭建 DNS 服务器实现域名正反向解析
Windows Server 各版本搭建 DNS 服务器实现域名正反向解析

热门文章

最新文章