上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: 怎么将Session记录到数据库中呢? 其实微软已经为我们设置好了。只要我们简单的配置一下就行了。 当然也要在 “我的电脑” 鼠标右键 >管理 >服务和应用程序 > 服务 >ASP.NET状态服务(或者ASP.NET State Service) >点击右键选择“启动” 首先。我们进入C盘下的 Wi 阅读全文
posted @ 2018-02-05 22:29 liu_xh 阅读(250) 评论(0) 推荐(0) 编辑
摘要: ASP.NET 项目运行时出现错误提示:[HttpException (0x80004005): 无法连接到 SQL Server 会话数据库。] ,后排查问题发现是由于项目的Session模式是使用SQLServer,(即Session信息保存在SQL Server的数据库中)但是与数据库的SQL 阅读全文
posted @ 2018-02-05 22:02 liu_xh 阅读(2409) 评论(0) 推荐(0) 编辑
摘要: 0x30表示字符‘0’的ASCII码。 阅读全文
posted @ 2018-02-05 16:52 liu_xh 阅读(5185) 评论(1) 推荐(0) 编辑
摘要: 1 MessageBoxResult dr = MessageBox.Show("是否在"+ConfigHelper.GetAppSetting("SourceDBName") +"库执行sql", "提示", MessageBoxButton.OKCancel, MessageBoxImage.Question); 2 if (dr == MessageBoxResult.OK) 3 { 4 ... 阅读全文
posted @ 2018-02-05 11:09 liu_xh 阅读(3187) 评论(0) 推荐(0) 编辑
摘要: 原创:转载请注明出处。 先说数据绑定: XAML代码: C#代码: 步骤如下: 先定义一个类 然后在后台写代码: 注意: 这里牵扯到一个很重要的东西,“数据上下文”,即DataContext,必须把界面控件的DataContext和类的实例绑定起来,这样界面才会显示类中属性的值。要想控件获得类中的属 阅读全文
posted @ 2018-02-02 09:27 liu_xh 阅读(453) 评论(0) 推荐(0) 编辑
摘要: 一、WPF中的两棵树 WPF中每个控件的Template都是由ControlTemplate构成,ControlTemplate包含了构成该控件的各种子控件,这些子控件就构成了VisualTree;而在我们可见的界面,所有搭建出整个程序UI的控件构成了LoginTree。VisualTree和Log 阅读全文
posted @ 2018-02-01 14:43 liu_xh 阅读(1590) 评论(0) 推荐(0) 编辑
摘要: WPF中控件拥有很多依赖属性(Dependency Property),我们可以通过编写自定义Style文件来控制控件的外观和行为,如同CSS代码一般。 总结一下WPF中Style样式的引用方法: 一、内联样式 直接在控件的内部xaml代码中书写各种依赖属性,如下: 这种方式比较直接方便,适用于单个 阅读全文
posted @ 2018-02-01 14:20 liu_xh 阅读(6880) 评论(0) 推荐(1) 编辑
摘要: //获取可空类型变量的值 int? intNull = 100; Console.WriteLine(intNull.Value); //可空类型的合并运算符 int? num1 = null; int? num2 = 50; int num3; ... 阅读全文
posted @ 2018-02-01 10:12 liu_xh 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 如下是枚举的用法。 阅读全文
posted @ 2018-02-01 10:11 liu_xh 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 1 /// 2 /// 用于查找控件的工具类:找到父控件、子控件 3 /// 4 class ControlsSearchHelper 5 { 6 /// 7 /// 查找父控件 8 /// 9 /// 父控件的类型 10 /// 要找的是... 阅读全文
posted @ 2018-01-31 22:19 liu_xh 阅读(688) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页