摘要:
1.验证TextBox内容不超过指定长度,失去焦点后验证。前台:<TextBoxName="tb1"Text="{BindingName,Mode=TwoWay,ValidatesOnExceptions=True}"Height="100"Width="100"/>后台:Personp=newPerson();publicMainPage(){InitializeComponent();p.Name="123";tb1.DataContext=p;}publicclassPerso 阅读全文
摘要:
首先拖入一个数据表格DataGrid控件,再拖入一个分页控件DataPager。后台进行数据绑定的代码如下:PagedCollectionViewpcv=newPagedCollectionView(itemList);pcv.PageSize=2;dataGrid1.ItemsSource=pcv;dataPager1.Source=pcv;DataPager的DisplayMode属性可以设置分页样式 阅读全文
摘要:
实现的效果如图:前台实现:<UserControl.Resources><Stylex:Key="DataGridColumnHeaderCheckBox"TargetType="data_primitives:DataGridColumnHeader"><SetterProperty="Template"><Setter.Value><ControlTemplateTargetType="data_primitives:DataGridColumnHeader" 阅读全文
摘要:
WinCE开发中的DataGrid控件没有选中行的属性,但是我们可以通过另外一种方式来模拟选中一行的效果,要实现这个效果需要为控件添加GotFocus和CurrentCellChanged事件。实现的代码如下:privatevoiddataGrid1_GotFocus(objectsender,Ev... 阅读全文
摘要:
格式规范的完整形式:{index [,width][:formatstring]}index是此格式程序引用的格式字符串之后的参数,从零开始计数;width(可选) 是要设置格式的字段的宽度,width取正数表示结果右对齐,取负数表示结果左对齐;formatstring(可选),包含有关设置类型格式的格式说明。一.内置类型的字母格式1. E-科学计数法表示 25000.ToString("E");//结果:2.500000E+0042. C-货币表示,带有逗号分隔符,默认小数点后保留两位,四舍五入 2.5.ToString("C");//结果:¥2.50 阅读全文
摘要:
Visual Assist X设置Visual Assist X的用法2009-04-07 18:02Visual Assist X的用法open file in solution打开文件中的解决办法open Corresponding file打开相应文件list methods in current file列表方法在当前文件file symbol文件标记find references找到参考资料find references in file找到参考文件clone find references results寻找克隆结果find previous by context找到以前的前后关系g 阅读全文
摘要:
本例是用C#实现的///<summary>///将字符串按指定间隔分隔///</summary>///<paramname="strOld">要进行处理的字符串</param>///<paramname="interval">间隔</param>///<returns></returns>publicstaticstring[]SplitByInterval(stringstrOld,intinterval){try{stringstrNew="&q 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Text;using System.Text.RegularExpressions;namespace ChineseToSpell{ /// <summary> /// 实现汉字转化为拼音 /// <remarks>实现的原理就是先将汉字转化成为内码,然后通过内码和拼音的对照来查找</remarks> /// </summary> public class ChineseToSpell { private static Reg. 阅读全文
摘要:
数据类型后面的问号表示该变量可以为NULL ///<summary>///实体类-销售单据///</summary>publicclassSaleForm{privatestring_formID;//单据IDprivatestring_shopID;//店铺IDprivatestring_formNO;//单据流水号privateDateTime?_beginTime;//单据生成时间privateDateTime?_checkoutTime;//单据提交时间privatefloat_mustAccount;//应收privatefloat_zeroAccount;/ 阅读全文
摘要:
CuteEditor是一款功能非常强大,支持图片上传、文件下载和word类似的文字编辑器。对于新闻发布系统和博客之类的系统,是非常的方便的。 一、CuteEditor的配置 1、将以下文件考贝到你站点根目录下的bin内(这些在CuteEditor6.0/bin下都可以找到) CuteEditor.dll, CuteEditor.ImageEditor.dll(6.0增加的EditorImage功能), CuteEditor.lic(解密文件), NetSpell.SpellChecker.dll(拼写检查功能) 注:(“.dic”为扩展名的文件是词典保存为纯文本文件的... 阅读全文