foreach (ToolStripItem c in toolStrip1.Items) { if (!(c is ToolStripButton)) continue; var btn = (ToolStripButton)c; btn.Image.Save(String.Format("{0}.png",c.Name)); } MessageBox.Show("图片导出成功!");…
在ListActivity中显示图标,好像并不复杂,实现起来却不轻松. 首先,定义列表中的每一行,这里不是用xml文件定义,而是用一个类定义,CheckBox.ImageView.TextView等控件以addView的方法添加. //apk列表的一行 class item_apk extends LinearLayout{ public CheckBox chk_apk; public TextView txt_name; public TextView txt_flag; public Im…
在网上找过许多文章,都没有成功获取过大图标,只能获取最大32x32.最后自己尝试了相关的windows api,终于找到一个可用的. 主要用到的C++的PrivateExtractIcons函数,具体说明请看:PrivateExtractIcons function 该函数原文有个说明可能需要注意一下:[This function is not intended for general use. It may be altered or unavailable in subsequent ver…