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

推荐订阅源

B
Blog
A
About on SuperTechFans
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
罗磊的独立博客
J
Java Code Geeks
人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
The GitHub Blog
The GitHub Blog
G
Google Developers Blog
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
Jina AI
Jina AI
F
Fortinet All Blogs
H
Help Net Security
B
Blog RSS Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Last Week in AI
Last Week in AI
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
C
Check Point Blog
GbyAI
GbyAI

博客园 - 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();