Home >Backend Development >C#.Net Tutorial >C# implements locking the icon to the Windows taskbar or deleting the icon

C# implements locking the icon to the Windows taskbar or deleting the icon

大家讲道理
大家讲道理Original
2016-11-10 14:54:543535browse

This function is sometimes used when testing installation and uninstallation on Windows

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;


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn