2016年7月4日
摘要: 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; namespace MDI窗... 阅读全文
posted @ 2016-07-04 16:00 爱意红沉 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 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; namespace 新建窗体... 阅读全文
posted @ 2016-07-04 15:58 爱意红沉 阅读(530) 评论(0) 推荐(0) 编辑
摘要: 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.IO... 阅读全文
posted @ 2016-07-04 15:48 爱意红沉 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-07-04 15:45 爱意红沉 阅读(85) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Linq; using System.Text; using System.Windows.Form... 阅读全文
posted @ 2016-07-04 15:11 爱意红沉 阅读(185) 评论(0) 推荐(0) 编辑
  2016年6月30日
摘要: 菜单和工具栏 ContextMenuStrip 右键菜单栏MenuStrip 顶部菜单栏statusStrip 底部菜单栏ToolStrip 工具栏ToolStripContainer (四周可以放置 菜单、控件) 容器 FlowLayoutPanel (内部控件)流式布局 GroupBox 控件分 阅读全文
posted @ 2016-06-30 08:27 爱意红沉 阅读(390) 评论(0) 推荐(0) 编辑
摘要: textBox 中 --外观 ScrollBars--Vertical(垂直滚动条) this.Close(); //关闭窗口 textBox1.Undo(); //撤销textBox1中的上一个操作 textBox1.Cut(); //剪切--将textBox1中所选内容移动到剪切板中 textB 阅读全文
posted @ 2016-06-30 08:21 爱意红沉 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 事件参数:object sender - 事件主体EventArgs e - 事件数据函数体 - 我进行的操作 制作思路:做一个按钮,就只想这一个按钮的功能就行了如果需要其它按钮来进行辅助,这个情况只会出现在,你这个按钮做不下去了,才需要去考虑是否有其它按钮可以来帮忙的 (网摘,) 1、窗体 1、常 阅读全文
posted @ 2016-06-30 08:18 爱意红沉 阅读(198) 评论(0) 推荐(0) 编辑
  2016年6月27日
摘要: WinForm:客户端应用程序; 布局:StartPosition --开始位置 Manual --无任何位置设置,根据Location的位置开始 CenterScreen --屏幕居中显示,覆盖Location的效果 WindowsDefaultLocation --默认位置,覆盖Location 阅读全文
posted @ 2016-06-27 15:43 爱意红沉 阅读(199) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using adoceshi.model; using adoceshi.dataopration; namespace adoceshi { class ... 阅读全文
posted @ 2016-06-27 15:37 爱意红沉 阅读(563) 评论(0) 推荐(0) 编辑