惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
U
Unit 42
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
J
Java Code Geeks
D
DataBreaches.Net
B
Blog RSS Feed
D
Docker
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
F
Fortinet All Blogs
Y
Y Combinator Blog
A
About on SuperTechFans
V
V2EX
罗磊的独立博客
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
MongoDB | Blog
MongoDB | Blog
博客园 - 【当耐特】
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题
月光博客
月光博客
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
阮一峰的网络日志
阮一峰的网络日志

博客园 - Austin leng

teststsafsdfsdafsdfsdsda Austin leng - 博客园 .net中的正则表达式使用高级技巧 Ta Muid(Dreams 梦幻) regular javascript installshield文档 安装程序 制作安装程序时鼠标右键菜单 iis admin and create a virtual directory picture change web.config's value install new installer password textbox setup 子父窗口吃传值 ,函数调用 vbscript 函数 serch engine optimize javascript 数组对象
C#打印,不显示取消对话框 创建打印画布
Austin leng · 2006-07-10 · via 博客园 - Austin leng


   PrintDocument pd 
= new PrintDocument();

    
//隐藏 取消对话框
   PrintController printController = new StandardPrintController();
   pd.PrintController 
= printController;

    
//创建打印画布
   Graphics g = pd.PrinterSettings.CreateMeasurementGraphics();
   g.DrawImage(pictureBox1.Image,
0,0);

   pd.Print();