羽毛的小白板
🤔 发现在 Windows 10 1809 下,使用 toast notification 必须在 UI 线程上调用 ToastNotifier。很可能有一批程序因此造成崩溃……
Windows 的话非主线程也能进行 UI 操作吧?那这个 UI 线程的定义是什么?
很长一段时间以来发现 IDA 不能从微软服务器获取 pdb,会提示“不支持此接口”。我原本以为是 pdb 格式更新了所以不支持,然而刚才搜索后发现 IDA 使用了 VC++ 2008 附带的 msdia90.dll,如果安装了 VS 的话也会带有最新版的这个 dll (如 msdia140.dll),但是 IDA 并不会使用。
解决方法:只需安装 VC++ 2008 运行库即可。
解决方法:只需安装 VC++ 2008 运行库即可。
推荐一下一个开源的 Windows 进程管理器 Process Hacker https://wj32.org/processhacker/index.php
它有一个插件,可以以 TrustedInstaller 身份运行程序 https://wj32.org/processhacker/forums/viewtopic.php?t=2407
它有一个插件,可以以 TrustedInstaller 身份运行程序 https://wj32.org/processhacker/forums/viewtopic.php?t=2407
发现之前我博客里提到的 Win10 Aero 未公开 API 更新了,加入了亚克力模糊。我已经更新了 Gist。
https://blog.ysc3839.com/archives/2017/10/win10-aero-undocumented-api.html
https://disq.us/p/1wa6kh1
https://withinrafael.com/2018/02/01/adding-acrylic-blur-to-your-windows-10-apps-redstone-4-desktop-apps/
https://blog.ysc3839.com/archives/2017/10/win10-aero-undocumented-api.html
https://disq.us/p/1wa6kh1
https://withinrafael.com/2018/02/01/adding-acrylic-blur-to-your-windows-10-apps-redstone-4-desktop-apps/
https://t.iss.one/kirin_no_manimani/1996
我自己是不喜欢烫餐具的,主要是懒。不过如果是没有封口的,从柜子里拿出来的餐具,我还是会烫一下,有封口的不会烫。
我自己是不喜欢烫餐具的,主要是懒。不过如果是没有封口的,从柜子里拿出来的餐具,我还是会烫一下,有封口的不会烫。
Telegram
綺凜的随波逐流
作为一个广东人,吃饭前不烫餐具就跟煮饭前不洗米一样
Forwarded from Milkice's 生而陌路
利用 Android for work 实现各项特性的软件 Island 现已开源
https://github.com/oasisfeng/island
https://github.com/oasisfeng/island
GitHub
GitHub - oasisfeng/island: Island for Android
Island for Android. Contribute to oasisfeng/island development by creating an account on GitHub.
Forwarded from Programmer Humor
Forwarded from Richard Yu
https://tech.justf.space/2018/06/17/Windows-activation-HWID/ 这方法在 Win10 Insider 18252 仍然有效……我估计微软到现在也没关闭 Win7 免费升级的渠道。
在网上发现了一个叫 Win7 Style Builder 的软件,可以直接查看 Windows 主题的内部数据。可以说懂了一点 Windows 主题的机制。
首先各位可能知道用
主题文件中有控件对应的资源,比如 ListView 对应的是 "ListView",用了 SetWindowTheme 之后,就会变成 "Explorer::ListView"。
而在 Win10 1809 里加入了 Win32 下的 DarkMode,其实只是多了一层处理,如果对窗口启用了 DarkMode 的话,"Explorer::ListView" 就会变成 "DarkMode_Explorer::ListView"。
经测试,直接通过
首先各位可能知道用
SetWindowTheme(hWnd, L"Explorer", nullptr) 可以让 ListView 和 TreeView 开启资源管理器的那种新的主题。主题文件中有控件对应的资源,比如 ListView 对应的是 "ListView",用了 SetWindowTheme 之后,就会变成 "Explorer::ListView"。
而在 Win10 1809 里加入了 Win32 下的 DarkMode,其实只是多了一层处理,如果对窗口启用了 DarkMode 的话,"Explorer::ListView" 就会变成 "DarkMode_Explorer::ListView"。
经测试,直接通过
SetWindowTheme(hWnd, L"DarkMode_Explorer", nullptr) 也是可以开启 DarkMode 的。