随笔分类 -  WinForm

摘要:转自:http://www.cnblogs.com/xiaofengfeng/archive/2011/04/16/2018504.html DataGridView控件 DataGridView是用于Windows Froms 2.0的新网格控件。它可以取代先前版本中DataGrid控件,它易于使 阅读全文
posted @ 2018-03-14 14:24 天晴微笑 阅读(1073) 评论(0) 推荐(0)
摘要:转自:http://heisetoufa.iteye.com/blog/405317 设置字段名 设置字段值 设定单元格表示 Error图标 设定当前单元格 取得当前单元格内容 取得当前单元格的列 Index 取得当前单元格的行 Index 向下一行 向上一行 取消 DataGridView1 为只 阅读全文
posted @ 2017-11-03 11:17 天晴微笑 阅读(2700) 评论(0) 推荐(1)
摘要:winform 配置文件是 App.config webform 的配置文件 是web.config 其实基本操作都一样 设置个配置文件 全局文件 访问者个配置文件 对这个配置文件增删改查 或者提前设置好配置文件 以后修改路径 、文件地址 、访问数据库、图片,不用从里面文件查找修改 ,只要改改配置文 阅读全文
posted @ 2017-11-02 20:48 天晴微笑 阅读(445) 评论(0) 推荐(0)
摘要:转载 首先写客服端,winform模拟一个post提交: 参数说明如下: address:接收文件的URL地址,如:http://localhost/UploadFile/Save.aspx fileNamePath:要上传的本地文件,如:D:\test.rar saveName:文件上传到服务器后 阅读全文
posted @ 2017-11-01 15:42 天晴微笑 阅读(7693) 评论(0) 推荐(0)
摘要:string username = this.textBox1.Text; string password = this.textBox2.Text; string AA = HttpUtility.UrlEncode(username, Encoding.UTF8); string bb = HttpUtili... 阅读全文
posted @ 2017-10-30 20:28 天晴微笑 阅读(214) 评论(0) 推荐(0)
摘要://byte[] 转图片 public static Bitmap BytesToBitmap(byte[] Bytes) { MemoryStream stream = null; try { stream = new MemoryStream(B... 阅读全文
posted @ 2017-10-30 20:07 天晴微笑 阅读(1391) 评论(0) 推荐(0)
摘要:using System; using System.Windows.Forms; using System.Drawing; using System.Collections; namespace ListViewSortFormNamespace { public class ListViewS 阅读全文
posted @ 2017-10-25 10:01 天晴微笑 阅读(1320) 评论(0) 推荐(0)
摘要:Button 按钮 布局 AutoSize 内容超出部分是否扩展到适应尺寸大小 Location 位置坐标 Size 控件大小 行为 Enabled 控件是否启用 visible 控件是可见还是隐藏 true可见 false 隐藏 外观 BackgroundColor 背景色 BackgroundI 阅读全文
posted @ 2017-04-27 01:15 天晴微笑 阅读(268) 评论(0) 推荐(0)
摘要:窗体移动 //窗体移动API [DllImport("user32.dll")] public static extern bool ReleaseCapture(); [DllImport("user32.dll")] public static extern bool SendMessage(I 阅读全文
posted @ 2017-04-25 00:22 天晴微笑 阅读(274) 评论(0) 推荐(0)
摘要:一、布局 Autostroll 控件内容大于可见区域是否自动显示滚动条 Maximumsize 窗体可调到最大尺寸 minimumsize 窗体可调到最小尺寸 size 窗体看到的尺寸 StarPosition 窗体位置 -WindowsDefaultLocation 默认的 -CenterScre 阅读全文
posted @ 2017-04-25 00:17 天晴微笑 阅读(584) 评论(0) 推荐(0)
摘要:Winform是.NET开发中对windows Form的一种称谓,form是窗体的意思,winform 称之为windows form。 一般中我们使用的东西分为 客户端、网页、APP 三大类。 winfrom属于客户端应用程序 c/s 客户端代码是执行在客户端上的,通过用户电脑运行,用户电脑配置 阅读全文
posted @ 2017-04-24 23:51 天晴微笑 阅读(934) 评论(0) 推荐(0)