摘要:
public static int readPictureDegree(string path) { int rotate = 0; using (var image = System.Drawing.Image.FromFile(path)) { foreach (var prop in imag 阅读全文
摘要:
下载微软提供的handle.exe,https://technet.microsoft.com/en-us/sysinternals/bb896655.aspx,将handle.exe放到c:\\windows\system32下。 快捷键windows+r运行cmd命令,输入handle --he 阅读全文
摘要:
以管理员权限打开vs Command 命令行窗口,sn -Vr [app] 阅读全文
摘要:
对于应用程序无法启动的问题,可以使用系统得日志查看器来找到程序无法启动的原因。命令行输入eventvwr命令进入事件查看器。 选中事件查看器左边的树形结构图中的日志类型(应用程序、安全性或系统),在右侧的详细资料窗格中将会显示出系统中该类的全部日志,双击其中一个日志,便可查看其详细信息。在日志属性窗 阅读全文
摘要:
windows 服务,net 阅读全文
摘要:
好的架构是进化出来的 ,不是设计出来的; 不同时期和不同环境有着不同的最佳架构; 存在即合理,合适的才是最好的; 阅读全文
摘要:
git rebase -i <commitid>git rebase -i HEAD~2 最近的两次提交合并git reflog --date=iso 查看命令历史git reset --soft HEAD@{3} 设置到某一个位置git pull --rebase 拉取衍合 git checkou 阅读全文
摘要:
[DllImport("kernel32")] private static extern IntPtr LoadLibrary([MarshalAs(UnmanagedType.LPStr)]string fileName) 阅读全文
摘要:
windows 服务 阅读全文
摘要:
我们在ControlTemplate中画了椭圆,应用于Button按钮,但我们Button中有的Content属性,却没有显示出来。因为这里用ControlTemplate重写了Button的样式,所以我们也要在ControlTemplate中增加ContentControl。通过ContentCo 阅读全文