C#将程序锁定到Windows7任务栏

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Shell32;
using System.IO;

namespace TestWin7Taskbar
{
    class Win7Taskbar
    {
        public static bool LockApp(bool isLock, string appPath)
        {
            Shell shell = new Shell();
            Folder folder = shell.NameSpace(Path.GetDirectoryName(appPath));
            FolderItem app = folder.ParseName(Path.GetFileName(appPath));
            string sVerb = isLock ? "锁定到任务栏(&K)" : "从任务栏脱离(&K)";

            foreach (FolderItemVerb Fib in app.Verbs())
            {
                if (Fib.Name == sVerb)
                {
                    Fib.DoIt();
                    return true;
                }
            }

            return false;

        }
    }
}

Win7Taskbar.LockApp(true, appPath)

Win7Taskbar.LockApp(falase, appPath

posted @ 2012-07-16 13:03  Zhener-Maozhenyu  阅读(459)  评论(0编辑  收藏  举报