摘要: <ListView.ItemContainerStyle> <Style TargetType="{x:Type ListViewItem}"> <Style.Triggers> <Trigger Property="IsKeyboardFocusWithin" Value="True"> <Set 阅读全文
posted @ 2021-08-10 11:59 欲静林鸟 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 工具——导入导出设置,重置调试设置就可以了,这是调试文件的异常 阅读全文
posted @ 2018-04-10 15:12 欲静林鸟 阅读(1682) 评论(0) 推荐(0) 编辑
摘要: WPF中Binding的技巧(一) 在WPF应用的开发过程中Binding是一个非常重要的部分。 在实际开发过程中Binding的不同种写法达到的效果相同但事实是存在很大区别的。 这里将实际中碰到过的问题做下汇总记录和理解。 1. source = {binding} 和source = {bind 阅读全文
posted @ 2016-12-16 17:38 欲静林鸟 阅读(394) 评论(0) 推荐(0) 编辑
摘要: WPF中的Binding技巧(二) 接上篇, 我们来看一看Elementname,Source,RelativeSource 三种绑定的方式 1.ElementName顾名思义就是根据Ui元素的Name来进行绑定: 例子: <Window x:Name="MainWindow"> <Grid> <B 阅读全文
posted @ 2016-12-16 17:37 欲静林鸟 阅读(318) 评论(0) 推荐(0) 编辑
摘要: ASP.NET State Service服务是用来管理 Session 的,正常来说,Session 位于IIS进程中(其实可以理解成在服务器的内存中),当IIS重启或程序池回收会自动清空Session。ASP.NET State Service服务如果启动可以解决这个问题,它会生成一个aspne 阅读全文
posted @ 2016-08-05 14:08 欲静林鸟 阅读(3906) 评论(0) 推荐(0) 编辑
摘要: 1、安装brew 打开命令行,执行以下命令: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 注意:如果安装失败,需要FQ进行安装 2、下载安装ios-sim (1)下 阅读全文
posted @ 2016-05-27 02:56 欲静林鸟 阅读(1798) 评论(0) 推荐(0) 编辑
摘要: vsc正确食用方式 : http://i5ting.github.io/vsc/#111 MicroSoft视频教程webcast: http://msdnwebcast.net 微软虚拟学院: https://mva.microsoft.com 阅读全文
posted @ 2016-05-21 16:12 欲静林鸟 阅读(161) 评论(0) 推荐(0) 编辑
摘要: _position:absolute; _top:expression(eval(document.documentElement.scrollTop)); 1、第一句代码 这句代码的意思是“位置:绝对定位”,也就是说元素的位置是相对于整个浏览器窗口的,而不是相对于父元素。一般要配合top、left 阅读全文
posted @ 2016-03-22 02:35 欲静林鸟 阅读(2755) 评论(0) 推荐(0) 编辑
摘要: 比方说设置默认主页啊,错误页伪静态之类的 阅读全文
posted @ 2016-02-29 15:18 欲静林鸟 阅读(200) 评论(0) 推荐(0) 编辑
摘要: Dictionary<string, int> counter = new Dictionary<string, int>(); foreach (string c in 数组) { if (counter.ContainsKey(c)) { counter[c]++; } else { count 阅读全文
posted @ 2016-01-27 16:44 欲静林鸟 阅读(2198) 评论(0) 推荐(0) 编辑