c#调用条码打印机

源代码在线查看: program.cs

软件大小: 34 K
上传用户: 潘内哇
关键词: 条码打印机
下载地址: 免注册下载 普通下载 VIP

相关代码

				using System;
				using System.Collections.Generic;
				using System.Windows.Forms;
				
				namespace ZPLPrinter
				{
				    static class Program
				    {
				        /// 
				        /// The main entry point for the application.
				        /// 
				        [STAThread]
				        static void Main()
				        {
				            Application.EnableVisualStyles();
				            Application.SetCompatibleTextRenderingDefault(false);
				            Application.Run(new Form1());
				        }
				    }
				}			

相关资源