摘要: public MainWindow() { InitializeComponent(); this.WindowState = Properties.Settings.Default.WindowState;//初始化窗体状态 Prope... 阅读全文
posted @ 2015-06-28 08:56 王文姿 阅读(202) 评论(0) 推荐(0) 编辑
摘要: HTML基础知识网页三部份内容:HTML CSS Javascript路径:一般做网页的时候用的相对路径。images/aaa.jpg 网页同一个目录中找images文件夹,再在images里面找aaa.jpgimages/1000/aaa.jpg 网页同一个目录中找images文件夹... 阅读全文
posted @ 2015-06-22 09:38 王文姿 阅读(276) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u... 阅读全文
posted @ 2015-06-19 09:38 王文姿 阅读(211) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u... 阅读全文
posted @ 2015-06-18 09:30 王文姿 阅读(203) 评论(0) 推荐(1) 编辑
摘要: c# 操作txt文件 # 操作txt文件 c#创建文本private const string FILE_NAME = "ErroLog.txt"; public static void WriteFile(string str) ...{ S... 阅读全文
posted @ 2015-06-15 09:23 王文姿 阅读(3775) 评论(0) 推荐(0) 编辑
摘要: 1)Trim方法string tt=" aaa "; tt=tt.Trim() 去字符串首尾空格的函数tt=tt.TrimEnd() 去掉字符串尾空格tt=tt.TrimStart() 去掉字符串首空格 阅读全文
posted @ 2015-06-15 09:20 王文姿 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 复制代码1、打开文件路径: OpenFileDialog a= new OpenFileDialog(); //new一个方法a.Filter = "(*.et;*.xls;*.xlsx)|*.et;*.xls;*.xlsx|all|*.*"; //删选、设定文件显示类型a.ShowDialog(... 阅读全文
posted @ 2015-06-15 09:18 王文姿 阅读(1078) 评论(0) 推荐(0) 编辑
摘要: private void button1_Click(object sender, EventArgs e) //这里是不用泛型集合的情况,用的是Datatable { SqlConnection conn = new SqlConnection("server=... 阅读全文
posted @ 2015-06-12 15:25 王文姿 阅读(247) 评论(0) 推荐(0) 编辑
摘要: private void button3_Click(object sender, EventArgs e) { if(listView1.SelectedItems.Count>0) { string x = listView1.Select... 阅读全文
posted @ 2015-06-08 22:40 王文姿 阅读(176) 评论(0) 推荐(0) 编辑
摘要: private void button1_Click(object sender, EventArgs e) //登陆页面的第一栏的文本 要将它传到Main窗体的状态栏 { //... 阅读全文
posted @ 2015-06-08 22:39 王文姿 阅读(334) 评论(0) 推荐(0) 编辑