06 2015 档案
摘要:接口和抽象类: 为了更好的理解接口,最常见的问题莫过于接口和抽象类的区别。接口和抽象类却存在实实在在的差异,具体体现在:1.一个类可以实现任意多个接口,但是最多只能对一个抽象类进行子类化;2.一个抽象类可以包括非抽象方法,而一个接口的所有方法在效果上都是抽象的;3.一个抽象类可以声明并使用变量,而...
阅读全文
摘要:x是xaml名称空间的简称,映射的是http://schemas.microsoft.com/winfx/2006/xaml。与C#一样,XAML也有自己独立的编译器。XAML会被解析和编译,最终形成微软的中间语言存储在程序集中。在解析和编译XAML的语言过程中,我们经常需要告诉编译器一些重要的信息...
阅读全文
摘要:1.引言 样式(Style),主要是用来让元素或内容呈现一定外观的属性。WPF中的样式的作用,就像Web中的CSS一样,为界面上的元素定制外观,以提供更好的用户界面。在WPF应用程序中,通过控件的属性,我们也可以实现更改控件的外观。但是,这种方式局限性大、不灵活且不利于维护。例如: ...
阅读全文
摘要:1.布局简介 应用程序界面设计中,合理的元素布局至关重要,它可以方便用户使用,并将信息清晰合理地展现给用户。WPF提供了一套功能强大的工具——面板(Panel),来控制用户界面的布局。你可以使用这些面板控件来排布元素。如果内置布局控件不能满足需要的话,还可以创建自定义的布局元素。2.面板(Pane...
阅读全文
摘要:港澳台DNS服务器地址 香港: 205.252.144.228 208.151.69.65 202.181.202.140 202.181.224.2 澳门: 202.175.3.8 202.175.3.3 台湾: 168.95.192.1 168.95.1.1 国外DNS服...
阅读全文
摘要:一、网站通用标签 {aspcms:sitepath} 网站终极目录(可放在二级目录,其它语言则在三级目录) {aspcms:languagepath} 语言目录 {aspcms:siteurl} 网站地址 {aspcms:sitelogo} LOGO地址 {aspcms:sitetitle} 网站标...
阅读全文
摘要:.Net Framework 4及以上有Chart控件,添加 Series是图表中的柱状体的集合,Legends是柱状体的标题批注,Titles是整个图表的标题修改Series批注数据源--添加新数据源添加数据类--项目名称右键添加--LINQ to SQL类--点击资源服务管理器--通过连接的SQ...
阅读全文
摘要:使用ReportViewer控件。添加完控件,添加报表,在项目名--右键--报表,添加。数据集--右键--添加数据集,连接数据库。工具箱--表两个表的连接项目名--右键--数据集。跳转到新建数据集页面,右键添加数据表。选中degree 右键属性DataType设置数据类型 private void ...
阅读全文
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window...
阅读全文
摘要:1. 引用命名空间 using System.Runtime.InteropServices; using System.Management; 2. 取机器名public string GetHostName(){ return System.Net.Dns.GetHostName(...
阅读全文
摘要:html中写正则表达式时,为了避免分歧,最好不用引号,用/^开头,$/结束正则表达式用于字符串处理,表单验证等场合,实用高效,但用到时总是不太把握,以致往往要上网查一番。我将一些常用的表达式收藏在这里,作备忘之用。本贴随时会更新。 匹配中文字符的正则表达式: [\u4e00-\u9fa5] 匹配双字...
阅读全文
摘要:发送邮件的邮箱要先启用SMTP,否则不能发送using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO...
阅读全文
摘要:WebRequest 对象的使用// 待请求的地址string url = "http://www.cnblogs.com"; // 创建 WebRequest 对象,WebRequest 是抽象类,定义了请求的规定,// 可以用于各种请求,例如:Http, Ftp 等等。/...
阅读全文
摘要:使用的是WebRequest类,在这以http://novel.hongxiu.com/a/1036665/10425842.html为例。代码如下:using System;using System.Collections.Generic;using System.ComponentModel;u...
阅读全文
摘要:using System;using System.Collections;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System...
阅读全文
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Net;usin...
阅读全文
摘要:使用截取字符串的方法,打乱原有文档的顺序,重新组合。截取字符串时只考虑了“,”间隔,没有考虑其他标点符号,也没有考虑重组的可读性。留待以后改善!using System;using System.Collections.Generic;using System.ComponentModel;usin...
阅读全文
摘要:1、打开文件路径: OpenFileDialog a= new OpenFileDialog(); //new一个方法a.Filter = "(*.et;*.xls;*.xlsx)|*.et;*.xls;*.xlsx|all|*.*"; //删选、设定文件显示类型a.ShowDialog(); /...
阅读全文
摘要:c# 操作txt文件 # 操作txt文件 c#创建文本private const string FILE_NAME = "ErroLog.txt"; public static void WriteFile(string str) ...{ S...
阅读全文
摘要:1)Trim方法string tt=" aaa ";tt=tt.Trim() 去字符串首尾空格的函数tt=tt.TrimEnd() 去掉字符串尾空格tt=tt.TrimStart() 去掉字符串首空格(2)通过ASCII码值去掉字符中的空格由于空格的ASCII码值是32,因此,在去掉字符串中所有的空...
阅读全文
摘要:ACCESS数据库1:CodeSmith选中链接类型是:ADOXSchema2:无密码的Access链接为:Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\hh\db.mdb;3:有密码的Access链接:Provider=Microsoft.Jet....
阅读全文
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window...
阅读全文
摘要:private void button1_Click(object sender, EventArgs e) { string treetxt = treeView1.SelectedNode.Text;//获取到树节点信息 Message...
阅读全文
摘要:第一个显示在listview中using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;usin...
阅读全文
摘要:DataTable 类表示一个内存中数据表。一、DataTable简介 (1)构造函数 DataTable() 不带参数初始化DataTable 类的新实例。 DataTable(string tableName) 用指定的表名...
阅读全文
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window...
阅读全文
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Window...
阅读全文
摘要:textbox:属性:text:文本selectedtext:获取或设置选中文本canundo:是否能够撤销方法:undo:撤销clearundo:清空撤销缓冲区cut:剪切copy:复制Paste:粘贴SelectAll:全选对话框:showdialog();显示对话框,返回一个dialogres...
阅读全文
摘要:StreamReader实现了抽象基类TextReader类,而StreamWriter实现了抽象基类TextWriter。分别用于对流的读取与写入。先从StreamReader说起一、构造方法StreamReader(Stream) 为指定的流初始化 StreamReader 类的新实例。 St...
阅读全文
摘要:对象属性using System;using System.Collections.Generic;using System.Text;namespace LeikuObject{ public class TelObject { private int _Code; ...
阅读全文
摘要:新建一个空白窗体每个窗体都有这样3个事件:KeyDown、KeyPress、KeyUp,KeyDown和KeyPress都是按键按下事件,但KeyDown用的是KeyCode跟键盘各个按键相对应,它对应Keys枚举,用起来比较方便;而KeyPress用的是KeyChar,这个就要找ASC II编码了...
阅读全文
摘要:WinForm窗体间传值的方法,包括了静态变量、公共变量、共有属性等方式。窗体间传递数据,无论是父窗体操作子窗体,还是子窗体操作父窗体,有以下几种方式:1.公共静态变量;2.使用共有属性;3.使用委托与事件;4.通过构造函数把主窗体传递到从窗体中;一、通过静态变量特点:传值是双向的,实现简单实现代码...
阅读全文
摘要:System.Data.SqlClient命名空间为 SQL服务器.NET Framework 数据提供程序。SQL Server .NET Framework 数据提供程序描述了用于在托管空间中访问 SQL Server 数据库的类集合。其中的类:SqlConnection 类表示一个到 SQL ...
阅读全文