摘要:
问题背景: 某个c#程序需要已管理员权限启动,并且有开机启动的功能。 解决方案: 1、已管理员权限启动参考c#程序以管理员权限运行。 2、开机启动,参考代码 public static void SetAutoRun(bool isAutoRun) { //设置是否自动启动 if (isAutoRu 阅读全文
摘要:
1、通过添加应用程序清单文件: Vista 和 Windows 7 操作系统为了加强安全,增加了 UAC(用户账户控制) 的机制,如果 UAC 被打开,用户即使是以管理员权限登录,其应用程序默认情况下也无法对系统目录,系统注册表等可能影响系统运行的设置进行写操作。这个机制大大增强了系统的安全性,但对 阅读全文
摘要:
System.Windows.Forms.Application.ExitThread(); System.Windows.Forms.Application.Exit(); System.Windows.Forms.Application.Restart(); Process.GetCurrent 阅读全文
摘要:
通过自定义活动(Custom Action)卸载 https://blog.csdn.net/qq_20849387/article/details/78422081 https://blog.csdn.net/qq_20849387/article/details/78422432 https:/ 阅读全文
摘要:
参考: wpf passwordbox控件 光标移到最后 WPF学习笔记-TextBox光标位置如何放到最后? PasswordBox /// <summary> /// 设置光标位置 /// </summary> /// <param name="passwordBox"></param> /// 阅读全文
摘要:
参考网址:https://www.e-learn.cn/tag/microsoft-ui-automation https://www.e-learn.cn/topic/3662339 https://social.msdn.microsoft.com/Forums/sqlserver/en-US/ 阅读全文
摘要:
https://cloud.tencent.com/developer/article/1021829 阅读全文
摘要:
public static string ConvertHtml2String(string html) { html = html.Trim(); html = Regex.Replace(html, "(\\<script(.+?)\\</script\\>)|(\\<style(.+?)\\< 阅读全文
摘要:
public T GetChildOfType<T>(DependencyObject depObj) where T : DependencyObject { if (depObj == null) return null; for (int i = 0; i < VisualTreeHelper 阅读全文
摘要:
Postman使用详解 转载于https://blog.csdn.net/fxbin123/article/details/80428216 阅读全文