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

推荐订阅源

WordPress大学
WordPress大学
Vercel News
Vercel News
博客园_首页
Y
Y Combinator Blog
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MyScale Blog
MyScale Blog
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
博客园 - Franky
Engineering at Meta
Engineering at Meta
量子位
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium

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