winform
皑雪
QQ:63507081
展开
-
winform 窗口截图
Point size = PointToScreen(控件.Location); Image img = new Bitmap(控件.Width, 控件.Height); Graphics g = Graphics.FromImage(img); g.CopyFromScreen(new Point(size.X, size.Y), new Point(0, 0), 控件.Size);原创 2013-04-10 10:26:53 · 1422 阅读 · 0 评论 -
动态加载dll
先创建好动态库(添加 window 下的 类库)编译生成dll //string path = Environment.CurrentDirectory;//AppDomain.CurrentDomain.BaseDirectory System.Reflection.Assembly ass = System.Reflection.Assembly.LoadFrom(“dll地址”);原创 2013-04-10 10:34:27 · 607 阅读 · 0 评论 -
winfrom webbrower 加载本地html 播放 声音文件
这样 就可以播放了,不过最简模式没有效,我是改height的,希望高手指点 string path = AppDomain.CurrentDomain.BaseDirectory + "return.html"; webBrowser1.Navigate(path); html 源码: 无标题文档 .inputmsg{ bor原创 2013-04-13 16:52:51 · 839 阅读 · 0 评论 -
winform 无窗口栏 拖动
在建好的winform窗体里 设置 FormBorderStyle 为 none 定义一个全局变量 private Point mouse; 为 winform 添加三个mouseDown 、MouseMove、MouseUp 事件 private void LogonForm_MouseDown(object sender, MouseEve转载 2013-04-24 13:36:56 · 784 阅读 · 0 评论 -
c# winform listview 拖放排序
源代码 http://download.csdn.net/detail/songconglai/5190885 建个winform工程 添加 listview 控件 设置 allowDrop 为true ,添加DragDrop,DragEnter,DragLeave,DragOver事件 public Form1() { Ini原创 2013-03-28 11:48:53 · 4871 阅读 · 1 评论 -
从注册表中查询某一键值对
本例已好视通为例,使用winform调用webserver接口后直接加入会议代码 Microsoft.Win32.RegistryKey regKey = null; Microsoft.Win32.RegistryKey regSubKey = null; try { regKe原创 2013-12-30 17:28:59 · 1801 阅读 · 0 评论 -
winform 获取启动项名称
private string GetStartUpName() { //获取启动项名称 System.Reflection.Assembly asm = System.Reflection.Assembly.GetEntryAssembly(); string startUpClient = asm.M原创 2014-04-17 18:59:10 · 603 阅读 · 0 评论