首页 > Windows开发 > 详细

C# 获取系统图标

时间:2016-07-15 21:10:01      阅读:339      评论:0      收藏:0      [点我收藏+]


1 代码

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;


namespace TestControls
{
    public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
        }

  
        [DllImport("user32.dll", CharSet = CharSet.Auto)]
        private static extern bool MessageBeep(uint type);

        [DllImport("Shell32.dll")]
        public extern static int ExtractIconEx(string libName, int iconIndex, IntPtr[] largeIcon, IntPtr[] smallIcon, int nIcons);

        public static IntPtr[] largeIcon;
        public static IntPtr[] smallIcon;

        private void Form1_Load(object sender, EventArgs e)
        {
            largeIcon = new IntPtr[250];
            smallIcon = new IntPtr[250];

            ExtractIconEx("shell32.dll", 0, largeIcon, smallIcon, 250);

            for (int i = 1; i < 200; ++i)
            {
                Icon ic = Icon.FromHandle(largeIcon[i]);
                ((PictureBox)this.Controls["pictureBox" + i.ToString()]).Image = ic.ToBitmap();
            }
        }
    }
}

2 效果图


技术分享






C# 获取系统图标

原文:http://blog.csdn.net/taoerit/article/details/51917528

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!