摘要: /// <summary> /// Label走马灯自定义控件 /// </summary> [ToolboxBitmap(typeof(Label))] //设置工具箱中显示的图标 public class ScrollingTextControl : Label { /// <summary> /// 定时器 /// </summary> Timer MarqueeTimer = new Timer(); /// <summary> /// 滚动文字源 /... 阅读全文
posted @ 2012-07-11 17:14 ﹎蓝言觅ぷ雨 阅读(12644) 评论(4) 推荐(3) 编辑
摘要: /// <summary> /// 解析字节数组成图片 /// </summary> /// <param name="byteArray"></param> /// <returns></returns> public static BitmapImage ByteArrayToBitmapImage(byte[] byteArray) { BitmapImage bmp = null; try { bmp = ... 阅读全文
posted @ 2012-07-06 16:47 ﹎蓝言觅ぷ雨 阅读(8612) 评论(0) 推荐(3) 编辑
摘要: /// <summary> /// 经纬度之间的距离 /// </summary> /// <param name="from"></param> /// <param name="to"></param> /// <returns></returns> public static double CalcDistance(System.Windows.Point from, System.Windows.Point to) { double rad = 637 阅读全文
posted @ 2012-07-06 16:41 ﹎蓝言觅ぷ雨 阅读(2664) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Common{ public static class ExtensionFuncation { #region 判断是否为空 /// <summary> /// 判断对象是否为null或者为空 /// </summary> /// <param name="o"></param> /// <returns></ret... 阅读全文
posted @ 2012-07-06 16:38 ﹎蓝言觅ぷ雨 阅读(756) 评论(6) 推荐(0) 编辑
摘要: WPF 结合 微软的手写板 进行输入1 <my:ImageButton Grid.Row="2" Height="42" Margin="278,2,0,0" x:Name="btnInput" VerticalAlignment="Top" Click="btnGetInput_Click" DefaultSource="/JiaXinTech.WPF.HotelTerminal;component/Images/JD/Attractions_Rim_S.p 阅读全文
posted @ 2012-07-04 11:43 ﹎蓝言觅ぷ雨 阅读(2816) 评论(2) 推荐(2) 编辑
摘要: CanPrev ? btnLeft.Visibility = Visibility.Visible : btnLeft.Visibility = Visibility.Visible;老是被if else 的逻辑 思维 导向 写成 这个样子 这是错误的正确写法如下btnLeft.Visibility = CanPrev ? Visibility.Visible : Visibility.Visible;囧 使用的时候 写错 不下10次 还是 记下来 备注下吧 阅读全文
posted @ 2012-06-26 09:40 ﹎蓝言觅ぷ雨 阅读(2266) 评论(2) 推荐(0) 编辑
摘要: WPF Toolkit AutoCompleteBox 实体类绑定 关键字自定义关联搜索匹配网上的例子都是零散的 翻阅了 很多篇文章后 再根据 自己项目的实际需求 整理出一个完整的 应用例子汉字首字母全文匹配提取绑定实体类相应的ID值XAMLView Code 1 <Window xmlns:my="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Input.Toolkit" x:Class="JiaXinTech.WPF.HotelTerminal.Test3&q 阅读全文
posted @ 2012-06-20 16:26 ﹎蓝言觅ぷ雨 阅读(3591) 评论(0) 推荐(2) 编辑
摘要: if (提交成功) { Response.Write ("<script language=javascript>if (confirm('是否继续添加')) {继续添加}else {返回}</script>") }if (提交成功) { Response.Write ("<script language=javascript>if (confirm('是否继续添加')) {return;}else {location.src='返回页面地址';}</script>&q 阅读全文
posted @ 2012-02-02 08:43 ﹎蓝言觅ぷ雨 阅读(988) 评论(0) 推荐(0) 编辑
摘要: string str = " aaaa {CreateTemplateTime} {0}";string.Format(str,aaa);报错 字符串格式化提示参数格式错误原因{CreateTemplateTime} 用了 "{}" 里面没有用整型 而用了 字符串占位符 所以提示参数格式 错误 阅读全文
posted @ 2012-01-14 17:04 ﹎蓝言觅ぷ雨 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 小篇幅字符串格式化 建议用 string.Format如 string str = @"Title:{0} Name:{1} Content:{2}";使用string.Format 格式化参数列 参数用意简单明了大篇幅字符串格式化 建议用string.Replace如 string str = @"create proc [{PrefixName}{ApplicationName}_AddUpdate] {ParameterColumns}@ID int,11111111111111111111111111 AS IF EXISTS(SELECT [{strPr 阅读全文
posted @ 2012-01-14 09:45 ﹎蓝言觅ぷ雨 阅读(1877) 评论(0) 推荐(0) 编辑