Loading,你用IE,难怪你打不开

摘要: 更新到最新版本并重启如下服务 检查TCP IPV4是否选中 阅读全文
posted @ 2020-12-24 15:13 老板娘的神秘商店 阅读(1399) 评论(0) 推荐(0) 编辑
摘要: 文章转载于https://www.cnblogs.com/dangnianxiaoqingxin/p/12653988.html 2.BindingGroup的使用 public class MyClass { public int StartValue { get; set; } public i 阅读全文
posted @ 2020-12-22 21:36 老板娘的神秘商店 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 如何去除百度的每日新闻提示: 1. 下载Greasemonkey 油猴脚本【这个插件】 2.本次处理对象是百度搜索,由于上班期间老是情不自禁看新闻,决定自宫,处理结果如下 完美解决百度的各种子内容,当然要定制的个位园友请发挥想象力自己去定制,个人的油猴脚本如下【本人不搞前端开发,简单实现如下】 // 阅读全文
posted @ 2020-12-08 23:31 老板娘的神秘商店 阅读(167) 评论(0) 推荐(0) 编辑
摘要: using System; using System.ComponentModel; using System.Linq.Expressions; using System.Reflection; public static class ClassExt { private static Membe 阅读全文
posted @ 2020-12-04 09:58 老板娘的神秘商店 阅读(285) 评论(0) 推荐(0) 编辑
摘要: using System.Collections; using System.Windows; using System.Windows.Controls; using System.Windows.Controls.Primitives; /// <summary> /// 附加属性作用于多选控件 阅读全文
posted @ 2020-12-04 09:38 老板娘的神秘商店 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 注册表 Computer\HKEY_CURRENT_USER\Software\Classes\.xhtml Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.wmx 找到并 阅读全文
posted @ 2020-11-21 16:03 老板娘的神秘商店 阅读(108) 评论(0) 推荐(0) 编辑
摘要: <Line Grid.Column="2" Grid.ColumnSpan="2" VerticalAlignment="Center" Height="20" Width="auto" StrokeThickness="5" X1="0" Y1="10" X2="{Binding Relative 阅读全文
posted @ 2020-11-11 13:41 老板娘的神秘商店 阅读(903) 评论(0) 推荐(0) 编辑
摘要: 以下控件采用https://www.cnblogs.com/cssmystyle/archive/2011/01/17/1937361.html部分代码 以下控件采用https://www.cnblogs.com/xiaomingg/p/11180355.html部分代码 TimeSpanBox 效 阅读全文
posted @ 2020-11-10 14:02 老板娘的神秘商店 阅读(546) 评论(0) 推荐(0) 编辑
摘要: public partial class App : Application { public App() { this.Startup += (o1, e1)=>{ string commandLine = Environment.CommandLine; string appFilePath = 阅读全文
posted @ 2020-11-08 14:04 老板娘的神秘商店 阅读(174) 评论(0) 推荐(0) 编辑
摘要: SaveFileDialog save = new SaveFileDialog(); save.Filter = "BMP|*.bmp|PNG|*.png|JPG|*.jpg"; if (save.ShowDialog().Value) { string fileName = save.FileN 阅读全文
posted @ 2020-11-05 13:33 老板娘的神秘商店 阅读(210) 评论(0) 推荐(0) 编辑