程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> c# 條形碼(求指教)

c# 條形碼(求指教)

編輯:C#入門知識

因公司需要完成一條形碼打印問題,所以在找到一些資料做了一個Demo

特請教!

不知道此條形碼是否正確:

圖:

 

\

源碼:

 

\\代碼 using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;

namespace Paabo.WordProcessing.Common
{
    public class BarCodeProvider
    {
        #region 單例
        private static BarCodeProvider _Intance;
        public static BarCodeProvider Intance
        {
            get
            {
                if (_Intance == null)
                {
                    _Intance = new BarCodeProvider();
                }
                return _Intance;
            }
        }
        #endregion

        #region Size
        /// <summary>
        /// 圖片寬度
        /// </summary>
        private int _Width = 200;
        public int Width
        {
            get { return _Width; }
            set { _Width = value; }
        }


        /// <summary>
        /// 圖片高度
        /// </summary>
        private int _Height = 80;
        public int Height 
        {
            get { return _Height; }
          &nbs

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved