随笔分类 -  WinForm

winform technology
ComboBox绑定数据的总结
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Collections;namespace WindowsFormsApplication1{ public partial class Form4 : Form { public Form4()... 阅读全文

posted @ 2013-01-24 11:36 北漂剑客 阅读(239) 评论(0) 推荐(0)

winform中打开一个网页的方法
摘要:打开程序集内的一个网页,一般用做帮助文档:System.Diagnostics.Process.Start(Environment.CurrentDirectory + "//html//help.htm");打开一个网站:System.Diagnostics.Process.Start(“http://www.baidu.com"); 阅读全文

posted @ 2011-10-24 11:09 北漂剑客 阅读(226) 评论(0) 推荐(1)