图标JumpList Windows 7

时间:2011-11-09 21:43:49

标签: c# winforms visual-studio-2010

此链接工作

string notepadPath = Path.Combine(Environment.SystemDirectory, "notepad.exe");
                JumpListLink jlNotepad = new JumpListLink(notepadPath, "Notepad");
                jlNotepad.IconReference = new IconReference(notepadPath, 0);

但在此链接中图标不会显示

string myapp = Path.Combine(Environment.CurrentDirectory, "MyApp.exe");
            JumpListLink jlapp = new JumpListLink(myapp, "My App");
            jlapp.IconReference = new IconReference(myapp, 0);

为什么?

Windows的图标仅工作文件=(

1 个答案:

答案 0 :(得分:2)

您应该将一个图标作为嵌入式资源添加到.NET Windows窗体应用程序中。然后它会工作。

查看有关代码项目的这篇文章:Windows 7 / VS2010 demo app