コード例 #1
0
        public TPCPrintLabel Clone()
        {
            TPCPrintLabel clone = new TPCPrintLabel();

            clone.m_Name        = m_Name;
            clone.m_LineWidth   = m_LineWidth;
            clone.m_MarginWidth = m_MarginWidth;
            clone.Items.Clear();
            foreach (LabelItem item in m_Items)
            {
                LabelItem new_item = new LabelItem();
                #region 设定属性
                new_item.Barcode       = item.Barcode;
                new_item.BarcodeHeight = item.BarcodeHeight;
                new_item.BarcodeWidth  = item.BarcodeWidth;
                new_item.Border        = item.Border;
                new_item.Height        = item.Height;
                new_item.IsImage       = item.IsImage;
                new_item.LineWidth     = item.LineWidth;
                new_item.Offset        = item.Offset;
                new_item.Position      = item.Position;
                new_item.State         = item.State;
                new_item.Text          = item.Text;
                new_item.TextFont      = item.TextFont;
                new_item.Width         = item.Width;
                #endregion
                clone.Items.Add(new_item);
            }
            return(clone);
        }
コード例 #2
0
        public bool LoadConfig(string config)
        {
            if (!File.Exists(config))
            {
                return(false);
            }

            try
            {
                XmlDocument doc = new XmlDocument();
                doc.Load(config);

                XmlNodeList nods = doc.SelectNodes("labels/label");
                foreach (XmlNode nod in nods)
                {
                    if (nod.Attributes["name"] != null)
                    {
                        TPCPrintLabel label = new TPCPrintLabel();
                        label.Name = nod.Attributes["name"].Value;
                        //读取margin
                        if (nod.Attributes["margin"] != null)
                        {
                            label.MarginWidth = Convert.ToSingle(nod.Attributes["margin"].Value);
                        }
                        //读取线宽
                        if (nod.Attributes["line-width"] != null)
                        {
                            label.LineWidth = Convert.ToSingle(nod.Attributes["line-width"].Value);
                        }

                        XmlNodeList nodItems = nod.SelectNodes("item");
                        foreach (XmlNode nodItem in nodItems)
                        {
                            LabelItem item = new LabelItem();
                            if (nodItem.Attributes["text"] != null)
                            {
                                item.Text = nodItem.Attributes["text"].Value;
                            }
                            if (nodItem.Attributes["state"] != null)
                            {
                                //item.State = (nodItem.Attributes["state"].Value.Equals("fixed")) ? TextState.state_fixed : TextState.state_dynamic;
                                switch (nodItem.Attributes["state"].Value)
                                {
                                case "iconRoHS":
                                    item.State = TextState.state_iconRoHS;
                                    break;

                                case "iconHF":
                                    item.State = TextState.state_iconHF;
                                    break;

                                case "fixed":
                                    item.State = TextState.state_fixed;
                                    break;

                                case "dynamic":
                                default:
                                    item.State = TextState.state_dynamic;
                                    break;
                                }
                            }
                            if (nodItem.Attributes["image"] != null)
                            {
                                item.IsImage = (nodItem.Attributes["image"].Value.Equals("false")) ? false : true;
                            }
                            if (nodItem.Attributes["offset"] != null)
                            {
                                string[] val = nodItem.Attributes["offset"].Value.Split(',');
                                item.Offset = new PointF(Convert.ToSingle(val[0]), Convert.ToSingle(val[1]));
                            }
                            if (nodItem.Attributes["position"] != null)
                            {
                                string[] val = nodItem.Attributes["position"].Value.Split(',');
                                item.Position = new PointF(Convert.ToSingle(val[0]), Convert.ToSingle(val[1]));
                            }
                            if (nodItem.Attributes["size"] != null)
                            {
                                string[] val = nodItem.Attributes["size"].Value.Split(',');
                                item.Width  = Convert.ToSingle(val[0]);
                                item.Height = Convert.ToSingle(val[1]);
                            }
                            if (nodItem.Attributes["border"] != null)
                            {
                                string[] val = nodItem.Attributes["border"].Value.Split('|');
                                item.Border = BorderStyle.border_none;
                                foreach (string v in val)
                                {
                                    if (v.Equals("left"))
                                    {
                                        item.Border = item.Border | BorderStyle.border_left;
                                    }
                                    else if (v.Equals("right"))
                                    {
                                        item.Border = item.Border | BorderStyle.border_right;
                                    }
                                    else if (v.Equals("top"))
                                    {
                                        item.Border = item.Border | BorderStyle.border_top;
                                    }
                                    else if (v.Equals("bottom"))
                                    {
                                        item.Border = item.Border | BorderStyle.border_bottom;
                                    }
                                }
                            }

                            if (item.IsImage)
                            {
                                //读入Code信息
                                XmlNode nodCode = nodItem.SelectSingleNode("code");
                                if (nodCode.InnerText.Equals("code39"))
                                {
                                    item.Barcode = BarcodeFactory.CreateBarcode(BarcodeType.Code_39);
                                }
                                else if (nodCode.InnerText.Equals("code128"))
                                {
                                    item.Barcode = BarcodeFactory.CreateBarcode(BarcodeType.Code_128);
                                }
                                else if (nodCode.InnerText.Equals("codeQR"))
                                {
                                    item.Barcode = BarcodeFactory.CreateBarcode(BarcodeType.Code_QR);
                                }
                                else if (nodCode.InnerText.Equals("codeQRMini"))
                                {
                                    item.Barcode = BarcodeFactory.CreateBarcode(BarcodeType.Code_QR_Mini);
                                }
                            }
                            else
                            {
                                //读入Font信息
                                XmlNode nodFont = nodItem.SelectSingleNode("font");
                                string  face    = nodFont.Attributes["face"].Value;
                                int     size    = Convert.ToInt32(nodFont.Attributes["size"].Value);

                                item.TextFont = new Font(face, size, FontStyle.Regular);
                            }
                            //读取条码Size
                            XmlNode nodSize = nodItem.SelectSingleNode("size");
                            if (nodSize != null)
                            {
                                string[] val = nodSize.InnerText.Split(',');
                                item.BarcodeWidth  = Convert.ToSingle(val[0]);
                                item.BarcodeHeight = Convert.ToSingle(val[1]);
                            }

                            label.Items.Add(item);
                        }
                        m_Labels.Add(label.Name, label);
                    }
                }
            }
            catch (Exception e)
            {
                return(false);
            }

            return(true);
        }