03 2011 档案

摘要:Point p = Cursor.Position;int x = p.X;int y = p.Y;label1.Text = String.Format("Mouse X:{0}, Mouse Y :{1}", x, y);  阅读全文
posted @ 2011-03-24 15:52 Laro 阅读(231) 评论(0) 推荐(0) 编辑
摘要:思路如下:首先在子窗口定义委托和事件,然后在父窗口调用子窗口时订阅事件,并在事件中写入想让子窗口操作父窗口或传值的具体内容。代码如下:子窗口namespace WpfApplicationTest{ //定义委托 public delegate void ChangeTextHandler(string text); /// <summary> /// chrild.xaml 的交互逻辑 /// </summary> public partial class chrild : Window { //定义事件 public event ChangeTextHandler 阅读全文
posted @ 2011-03-18 12:02 Laro 阅读(451) 评论(0) 推荐(0) 编辑
摘要:粘一个自己实践的例子第一步:定义验证模型。View Code using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;namespace DecorationMS.WindowsBase{ class DMSValidatiionRule { private const string emailPatten = @"^\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\ 阅读全文
posted @ 2011-03-17 11:28 Laro 阅读(1223) 评论(0) 推荐(0) 编辑
摘要:C# 中转义用 \SQL中则是用 ‘ (单引号)如:select 'I''m a boy' 阅读全文
posted @ 2011-03-07 22:36 Laro 阅读(692) 评论(0) 推荐(0) 编辑
摘要:要将字符转换成unicode字符以显示某些符号,可以在字符串前加N,如:select N'♧♡♂♀♠♣♥❤☜☞☎☏ ' 阅读全文
posted @ 2011-03-07 22:34 Laro 阅读(673) 评论(0) 推荐(0) 编辑