在图片框中插入图标

时间:2009-10-05 21:10:26

标签: c# winforms

我需要添加在运行时选择的任何文件的图标。

我有项目提供按钮(按下时会打开对话框,允许您选择所需的文件)

当用户选择文件(AutoCad,MS Office等)时,我需要我的项目来读取此文件的属性图标并在图片框中插入此图标..

同一个告诉我你可以找到所有图标,哪些窗口用于显示'图标',你可以从注册表中读取..但他不知道在哪里找到或者他是否确定。

2 个答案:

答案 0 :(得分:2)

您可以使用SHGetFileInfo功能

试试这段代码

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 WindowsFormsApplication6
{

  public partial class Form1 : Form
  {

[StructLayout(LayoutKind.Sequential)]
public struct SHFILEINFO
{
  public IntPtr hIcon;
  public IntPtr iIcon;
  public uint dwAttributes;
  [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 260)]
  public string szDisplayName;
  [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 80)]
  public string szTypeName;
};

class Win32
{
  public const uint SHGFI_ICON = 0x100;
  public const uint SHGFI_LARGEICON = 0x0;    
  public const uint SHGFI_SMALLICON = 0x1;    

  [DllImport("shell32.dll")]
  public static extern IntPtr SHGetFileInfo(string pszPath,
                              uint dwFileAttributes,
                              ref SHFILEINFO psfi,
                              uint cbSizeFileInfo,
                              uint uFlags);
}

    private void button1_Click(object sender, EventArgs e)
    {
      string fName;     
      SHFILEINFO shinfo = new SHFILEINFO();
      OpenFileDialog openFileDialog1 = new OpenFileDialog();
      openFileDialog1.Filter = "All files (*.*)|*.*";
      openFileDialog1.FilterIndex = 2;
      openFileDialog1.RestoreDirectory = true;

      if (openFileDialog1.ShowDialog() == DialogResult.OK)
      {
        fName     = openFileDialog1.FileName;
        Win32.SHGetFileInfo(fName, 0, ref shinfo, (uint)Marshal.SizeOf(shinfo), Win32.SHGFI_ICON | Win32.SHGFI_LARGEICON);
        System.Drawing.Icon myIcon = System.Drawing.Icon.FromHandle(shinfo.hIcon);
        pictureBox1.Image=(Image) myIcon.ToBitmap();
      }

    }


    public Form1()
    {
      InitializeComponent();
    }
  }
}

答案 1 :(得分:0)

我假设您知道如何设置PictureBox的图像,并且它是您正在寻找的实际图标。

这将为您提供特定程序的 DefaultIcon 的路径: HKEY_CLASSES_ROOT\<ProgramID>\DefaultIcon

...其中 ProgramID 基本您要打开的文件类型(例如:Excel.AddIn)。如果您不确定所需的ProgramID,则必须首先查看相关扩展名(.doc,.xls等)的条目,该条目也在HKEY_CLASSES_ROOT

之内