c#如何打印picturebox里的图片,winform怎样打印picturebox里的图片
摘要:c#如何打印picturebox里的图片,winform怎样打印picturebox里的图片第一步:拖一个printDocument控件到界面。打印按钮的代码:C# CODE:private void button1_Click(object sender, EventArgs e)//执行打印 { PrintDialog MyPrintDg = new PrintDialog(); MyPrin...
阅读全文
posted @
2010-08-26 16:45
努力实现目标
阅读(11856)
推荐(1) 编辑
C# 注册表操作类(完整版)winform
摘要:1 ///2 /// 注册表基项静态域3 /// 4 /// 主要包括:5 /// 1.Registry.ClassesRoot 对应于HKEY_CLASSES_ROOT主键6 /// 2.Registry.CurrentUser 对应于HKEY_CURRENT_USER主键7 /// ...
阅读全文
posted @
2010-08-23 16:17
努力实现目标
阅读(5528)
推荐(1) 编辑
C# MD5加密解密类 winform
摘要:从网上找到了一些相关的资料然后自己试着做了一下觉得收益匪浅。其实对MD5的加密解密,我们知道怎么调用就好了,其实也没有什么太多的必要去看其算法。以下代码希望对观望的读者有用。MD5加密解密的两个类:其中的一个加密解密类:using System;using System.Collections.Generic;using System.Text;using System.Globalization;using System.Security.Cryptography;using System.IO;namespace WindowsApplication2{ class DES { // 创建
阅读全文
posted @
2010-08-23 16:10
努力实现目标
阅读(18841)
推荐(0) 编辑
想让百度快速收录自己网站的捷径
摘要:不少草根站长希望掌握网站快速被搜索引擎收录的技巧,从而实现网络营销的高速运转。创享骑士今天发现一些网络营销技巧的分享,感觉非常不错,值得大家借鉴一下。 网络营销技巧中,百度知道、百度百科、内部链接和外部链接这四项技巧的细节把握对网络营销的效果提升具有十分积极的意义。与其说,本文介绍的是百度快速收录的网络营销技巧,不如说包含促进搜素引擎收录网站的因素。对于网站的快速收录,创享骑士建议做好两件事情...
阅读全文
posted @
2010-08-14 10:04
努力实现目标
阅读(505)
推荐(0) 编辑
C#显示PDF文件,winform打开PDF文件并在窗体中显示
摘要:C#显示PDF文件,winform打开PDF文件并在窗体中显示1.在工具箱中添加Adobe提供的ActiveX控件,如图所示: 选择com组件,我用的是7.0版本 打勾点确定,在控件工具栏就有了,见下图: 拖一个Adobe PDF Reader控件到窗体上,双击窗体,在窗体加载时,弹出对话框,加载PDF文件:string fileName = MyOpenFileDialog();axAcroPD...
阅读全文
posted @
2010-08-13 15:43
努力实现目标
阅读(36100)
推荐(1) 编辑
C#中,重新排列panel中的按钮
摘要:重新排列panel中的按钮,如图排列前:排列后:代码:void ArrangeButtons(Panel pn) {int x = 0, y = 0; System.Windows.Forms.Control.ControlCollection ct = pn.Controls;//for (int i = 0; i < ct.Count; i++)for (int i = ct.Count...
阅读全文
posted @
2010-08-13 15:28
努力实现目标
阅读(1958)
推荐(0) 编辑
C# WinForm开发系列 - ListBox/ListView/Panel
摘要:包含自定义绘制的ListBox, 带拖动,图片显示, 内嵌其它控件, 打印等扩展功能的ListView(文章及相关代码搜集自网络,仅供学习参考,版权属于原作者! ).1.ColorListBox ColorListBox.zip 2.RadioListBox RadioListBox.rar3.扩展CheckedListBox控件 ExCheckedListBox.rar 每项可以显示多行文本的...
阅读全文
posted @
2010-08-13 15:26
努力实现目标
阅读(745)
推荐(1) 编辑
Winform C#标题栏自定义样式
摘要:#region 改变窗口样式 #if !DEBUG [DllImport ("User32.dll")] private static extern IntPtr GetWindowDC(IntPtr hwnd); [DllImport ("User32.dll")] private static extern int ReleaseDC(IntPtr hwnd, IntPtr hdc); pro...
阅读全文
posted @
2010-08-13 15:25
努力实现目标
阅读(9905)
推荐(0) 编辑
c# winForm 圆角Panel
摘要:using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.Drawing; using System.Drawing.Drawing2D; namespace RoundPanel { class RoundPanel : Panel {...
阅读全文
posted @
2010-08-13 15:24
努力实现目标
阅读(12855)
推荐(0) 编辑