替换exe程序图标dll
/// <summary>
/// 替换程序图标
/// </summary>
/// <param name="exe">程序</param>
/// <param name="ico">图标</param>
/// <returns></returns>
private bool setAppIco(string exe, string ico)
{
try
{
UpdateExeIco.UpdateExeIco exeIco = new UpdateExeIco.UpdateExeIco();
return exeIco.ChangeExeIcon_News(ico, exe);
}
catch
{
return false;
}
}