PrintLabelEdit.cs 27.3 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using System.Xml;
using Model;

namespace BLL
{
    public class PrintLabelEdit
    {
        private XmlDocument xmlDoc;
        private XmlNode xmlRoot;
        private List<PrintLabelTemplate> labelTemp;  //所有模板文件
        private PrintLabelTemplate interimLabel;  //临时的

        ////private string _path;
        //private int labelIdx = -1;
        //private int fieldIdx = -1;
        //private bool fieldShow = false;
        //private Model.LabelToPrint.Field currField;
        //private int defaultIdx = -1;
        ////private BLL.ConvertBarcode code = new BLL.ConvertBarcode();

        ///// <summary>
        ///// 标签显示大小的位置,包含偏移
        ///// </summary>
        //private RectangleF labelSizeShow;
        ///// <summary>
        ///// 字段显示大小的位置,包含偏移
        ///// </summary>
        //private RectangleF fieldSizeShow;
        ///// <summary>
        ///// 添加标签时初始的大小,mm
        ///// </summary>
        //private const string LABEL_SIZE = "50,70";
        //

        //public delegate void SelectEvent(Model.LabelToPrint.Field field);
        //public delegate void LabelSizeEvent(SizeF size);
        //public event SelectEvent Selected;
        //public event LabelSizeEvent LabelSize;

        public PrintLabelEdit()
        {
            LogNet.log.Info("读取打印标签");
            List<string> xmlFile = new();
            string[] allFiles = System.IO.Directory.GetFiles(FilePath.PRINT_LABEL_DIR, "*.xml");  //searchOption无法完全读取文件,设置*.xml,xmla、xmlb、xmlc都会获取
            xmlFile.AddRange(allFiles);

            xmlDoc = new();
            labelTemp = new();

            for (int i = 0; i < xmlFile.Count; i++)  //文件循环
            {
                PrintLabelTemplate temp = LoadFile(xmlFile[i]);
                labelTemp.Add(temp);
            }
        }

        public string[] Name
        {
            get
            {
                string[] s = new string[labelTemp.Count];
                for (int i = 0; i < s.Length; i++)
                    s[i] = labelTemp[i].Name;
                return s;
            }
        }

        public void Save(ref List<PrintLabelTemplate> temp)
        {
            List<string> filePath = new();
            for (int i = 0; i < labelTemp.Count; i++)
                filePath.Add(labelTemp[i].FilePath);

            for (int i = 0; i < temp.Count; i++)
            {
                if (temp[i].State == TemplateState.Unsaved)
                    SavePrintLabel(temp[i]);
                filePath.Remove(temp[i].FilePath);
            }

            //删除不存在的
            for (int i = 0; i < filePath.Count; i++)
            {
                if (System.IO.File.Exists(filePath[i]))
                    System.IO.File.Delete(filePath[i]);
            }

            labelTemp = new();
            for (int i = 0; i < temp.Count; i++)
                labelTemp.Add(temp[i].Clone());
        }

        public List<PrintLabelTemplate> ToCopy()
        {
            List<PrintLabelTemplate> result = new();
            for (int i = 0; i < labelTemp.Count; i++)
                result.Add(labelTemp[i].Clone());
            return result;
        }

        public void PrintTest(PrintLabelTemplate label)
        {
            using PrintDialog dlg = new();
            if (dlg.ShowDialog() != DialogResult.OK) return;

            using System.Drawing.Printing.PrintDocument print = new() { PrinterSettings = dlg.PrinterSettings };

            print.PrintPage += PrintTest_PrintPage;
            print.DefaultPageSettings.Landscape = dlg.PrinterSettings.DefaultPageSettings.Landscape;
            interimLabel = label;

            PrintPreviewDialog ppd = new PrintPreviewDialog();
            ppd.Document = print;

            ppd.WindowState = FormWindowState.Maximized;
            ppd.ShowDialog();

            print.Print();
        }

        private PrintLabelTemplate LoadFile(string filePath)
        {
            PrintLabelTemplate temp = new();
            try
            {
                xmlDoc.Load(filePath);
                xmlRoot = xmlDoc.LastChild;
                temp.Name = xmlRoot.Attributes["Name"].Value;
                temp.Size = ObjConversion.StrToSizeF(xmlRoot.Attributes["Size"].Value);
                temp.FilePath = filePath;
                temp.Field.AddRange(LoadLabelField());
            }
            catch (Exception ex)
            {
                LogNet.log.Error("LoadFile", ex);
            }
            return temp;
        }

        private List<PrintLabelField> LoadLabelField()
        {
            List<PrintLabelField> fieldList = new();
            using XmlNodeList list = xmlRoot.SelectNodes("Field");
            System.Reflection.PropertyInfo[] destination;

            foreach (XmlNode node in list)
            {
                PrintLabelField field = new();
                destination = field.GetType().GetProperties();
                for (int i = 0; i < destination.Length; i++)
                {
                    string val = node.Attributes[destination[i].Name].Value;
                    if (destination[i].PropertyType == typeof(PrintLabelFieldType))
                        destination[i].SetValue(field, ObjConversion.StrToFieldType(val));
                    else if (destination[i].PropertyType == typeof(Font))
                        destination[i].SetValue(field, ObjConversion.StrToFont(val));
                    else if (destination[i].PropertyType == typeof(RectangleF))
                        destination[i].SetValue(field, ObjConversion.StrToRectF(val));
                    else if (destination[i].PropertyType == typeof(string))
                        destination[i].SetValue(field, val);
                }
                fieldList.Add(field);
            }
            return fieldList;

        }

        private void SavePrintLabel(PrintLabelTemplate temp)
        {
            xmlDoc = new XmlDocument();
            XmlElement element;
            System.Reflection.PropertyInfo[] destination;

            if (System.IO.File.Exists(temp.FilePath))
            {
                xmlDoc.Load(temp.FilePath);
                xmlRoot = xmlDoc.LastChild;
                xmlRoot.RemoveAll();
            }
            else
            {
                temp.FilePath = FilePath.PRINT_LABEL_DIR + string.Format("{0:yyyyMMddHHmmssfff}.xml", DateTime.Now);
                xmlDoc.AppendChild(xmlDoc.CreateXmlDeclaration("1.0", System.Text.Encoding.UTF8.BodyName, null));
                xmlRoot = xmlDoc.CreateElement("Label");
                xmlDoc.AppendChild(xmlRoot);
            }

            xmlRoot.Attributes.Append(xmlDoc.CreateAttribute("Name"));
            xmlRoot.Attributes["Name"].Value = temp.Name;
            xmlRoot.Attributes.Append(xmlDoc.CreateAttribute("Size"));
            xmlRoot.Attributes["Size"].Value = ObjConversion.SizeFToStr(temp.Size);

            for (int i = 0; i < temp.Field.Count; i++)
            {
                element = xmlDoc.CreateElement("Field");
                xmlRoot.AppendChild(element);
                destination = temp.Field[i].GetType().GetProperties();
                for (int j = 0; j < destination.Length; j++)
                {
                    string val = destination[j].Name;
                    string text;
                    if (destination[j].PropertyType == typeof(RectangleF))
                        text = ObjConversion.RectFToStr((RectangleF)destination[j].GetValue(temp.Field[i]));
                    else if (destination[j].PropertyType == typeof(Font))
                        text = ObjConversion.FontToStr((Font)destination[j].GetValue(temp.Field[i]));
                    else
                        text = destination[j].GetValue(temp.Field[i]).ToString();
                    element.SetAttribute(val, text);
                }
            }

            xmlDoc.Save(temp.FilePath);
            temp.State = TemplateState.Saved;
        }

        private void PrintTest_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
        {
            var brect = new RectangleF(0, 0, interimLabel.Size.Width, interimLabel.Size.Height);
            brect = ObjConversion.MmToPx(brect);
            Bitmap bmp = new Bitmap((int)brect.Width, (int)brect.Height);
            Graphics gg = Graphics.FromImage(bmp);

            for (int i = 0; i < interimLabel.Field.Count; i++)
            {
                PrintLabelField field = interimLabel.Field[i];
                RectangleF rect = ObjConversion.MmToPx(field.Rectangle);

                if (field.Type == PrintLabelFieldType.Text)
                {
                    if (interimLabel.FieldShowKey)
                    {
                        e.Graphics.DrawString(field.Text, field.Font, Brushes.Black, rect);
                        gg.DrawString(field.Text, field.Font, Brushes.Black, rect);
                    }
                    else
                    {
                        e.Graphics.DrawString(ObjConversion.StrRemoveKey(field.Text), field.Font, Brushes.Black, rect);
                        gg.DrawString(ObjConversion.StrRemoveKey(field.Text), field.Font, Brushes.Black, rect);
                    }
                }
                else
                {
                    if (field.Image != null)
                    { e.Graphics.DrawImage(field.Image, rect); 
                    gg.DrawImage(field.Image, rect); 
                    
                    }
                }
                //e.Graphics.DrawRectangle(Pens.LightGray, rect.X, rect.Y, rect.Width, rect.Height);
            }
            gg.Save();
            bmp.Save("printlabel.bmp");
        }

        private void PrintLast_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
        {
            e.Graphics.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.NearestNeighbor;
            e.Graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.None;
            for (int i = 0; i < interimLabel.Field.Count; i++)
            {
                PrintLabelField field = interimLabel.Field[i];
                RectangleF rect = ObjConversion.MmToPx(field.Rectangle);

                if (field.Type == PrintLabelFieldType.Text)
                {
                    e.Graphics.DrawString(field.PrintText, field.Font, Brushes.Black, rect);
                }
                else
                {
                    if (field.Image != null)
                        e.Graphics.DrawImage(field.Image, rect);
                }
            }
        }

        public Bitmap PrintImage(string labelName, Dictionary<string, string> text, out string[] barCode)
        {
            barCode = null;
            int index = labelTemp.FindIndex(match => match.Name == labelName);
            if (index == -1) return null;
            SizeF sf;

            barCode = new string[labelTemp[index].Field.Count];
            for (int i = 0; i < labelTemp[index].Field.Count; i++)
            {
                PrintLabelField field = labelTemp[index].Field[i];
                string[] keys = ObjConversion.StrGetKey(field.Text);
                field.PrintText = field.Text;
                for (int j = 0; j < keys.Length; j++)
                {
                    if (text.ContainsKey(keys[j]))
                        field.PrintText = field.PrintText.Replace("[" + keys[j] + "]", text[keys[j]]);
                }
                field.PrintText = field.PrintText.Replace("{enter}", "\r\n");
                field.PrintText = field.PrintText.Replace("{br}", "\n");
                if (field.Type != PrintLabelFieldType.Text)
                {
                    sf = ObjConversion.MmToPx(field.Rectangle.Size);
                    field.Image = ConvertBarcode.StrToCode(field.Type, field.PrintText, sf);
                    
                }
                barCode[i] = field.PrintText;
            }

            sf = ObjConversion.MmToPx(labelTemp[index].Size);
            Bitmap bmp = new(Convert.ToInt32(sf.Width), Convert.ToInt32(sf.Height));
            Graphics g = Graphics.FromImage(bmp);
            g.Clear(Color.White);
            for (int i = 0; i < labelTemp[index].Field.Count; i++)
            {
                PrintLabelField field = labelTemp[index].Field[i];
                RectangleF rf = ObjConversion.MmToPx(field.Rectangle);
                if (field.Type == PrintLabelFieldType.Text)
                    g.DrawString(field.PrintText, field.Font, Brushes.Black, rf);
                else
                {
                    if (field.Image != null)
                        g.DrawImage(field.Image, rf);
                }
            }
            g.Save();
            return bmp;
        }

        public void PrintLast(string labelName, string printName, bool printLandscape, Dictionary<string, string> text, out string[] barCode)
        {
            barCode = null;
            int index = labelTemp.FindIndex(match => match.Name == labelName);
            if (index == -1)
            {
                LogNet.log.Info("未找到标签!");
                return;
            } 
            SizeF sf;

            barCode = new string[labelTemp[index].Field.Count];
            for (int i = 0; i < labelTemp[index].Field.Count; i++)
            {
                PrintLabelField field = labelTemp[index].Field[i];
                string[] keys = ObjConversion.StrGetKey(field.Text);
                field.PrintText = field.Text;
                for (int j = 0; j < keys.Length; j++)
                {
                    if (text.ContainsKey(keys[j]))
                        field.PrintText = field.PrintText.Replace("[" + keys[j] + "]", text[keys[j]]);
                }
                field.PrintText = field.PrintText.Replace("{enter}", "\r\n");
                field.PrintText = field.PrintText.Replace("{br}", "\n");
                if (field.Type != PrintLabelFieldType.Text)
                {
                    sf = ObjConversion.MmToPx(field.Rectangle.Size);
                    field.Image = ConvertBarcode.StrToCode(field.Type, field.PrintText, sf);
                }
                barCode[i] = field.PrintText;
            }

            using System.Drawing.Printing.PrintDocument print = new();
            print.PrinterSettings.PrinterName = printName;
            print.DefaultPageSettings.Landscape = printLandscape;
            print.PrintPage += PrintLast_PrintPage;
            interimLabel = labelTemp[index];
            print.Print();
        }

        //====================================
        ///// <summary>
        ///// 标签名称
        ///// </summary>
        //public string[] LabelName
        //{
        //    get
        //    {
        //        string[] s = new string[_label.Count];
        //        for (int i = 0; i < s.Length; i++)
        //            s[i] = _label[i].Name;
        //        return s;
        //    }
        //}

        ///// <summary>
        ///// 标签总数
        ///// </summary>
        //public int LabelCount
        //{
        //    get
        //    {
        //        if (_label == null)
        //            return -1;
        //        else
        //            return _label.Count;
        //    }
        //}

        ///// <summary>
        ///// 打印偏移
        ///// </summary>
        //public Point PrintOffset
        //{
        //    set
        //    {
        //        _label[labelIdx].PrintOffset = value;
        //    }
        //    get
        //    {
        //        if (labelIdx == -1)
        //            return new Point();
        //        else
        //            return _label[labelIdx].PrintOffset;
        //    }
        //}

        ///// <summary>
        ///// 错误信息
        ///// </summary>
        //public string ErrInfo { get; private set; }

        //public string DefaultLabel
        //{
        //    get
        //    {
        //        if (defaultIdx < 0 || defaultIdx >= _label.Count)
        //            return "";
        //        else
        //            return _label[defaultIdx].Name;
        //    }
        //    set
        //    {
        //        defaultIdx = _label.FindIndex(s => s.Name == value);
        //    }

        //}

        //public int FieldIndex { get => fieldIdx; }

        //public Model.LabelToPrint.Field SelectedField
        //{
        //    get => currField;
        //}



        ///// <summary>
        ///// 移除用于编辑的控件
        ///// </summary>
        //public void RemoveControl()
        //{
        //    _pic = null;
        //    labelIdx = -1;
        //    fieldIdx = -1;
        //}

        ///// <summary>
        ///// 创建
        ///// </summary>
        ///// <param name="name"></param>
        //public void Create(string name)
        //{
        //    string path = Model.FilePath.PRINT_LABEL + string.Format("{0:yyyyMMddHHmmss}.xml", DateTime.Now);
        //    _doc = new XmlDocument();
        //    _doc.AppendChild(_doc.CreateXmlDeclaration("1.0", System.Text.Encoding.UTF8.BodyName, null));
        //    XmlElement root = _doc.CreateElement("Label");
        //    _doc.AppendChild(root);
        //    root.SetAttribute("Name", name);
        //    root.SetAttribute("Size", LABEL_SIZE);
        //    root.SetAttribute("Offset", "0,0");
        //    _doc.Save(path);

        //    string[] s;
        //    PrintLabel lp = new PrintLabel { Name = name, Path = path };
        //    s = LABEL_SIZE.Split(',');
        //    lp.Size_mm = new Size(Convert.ToInt32(s[0]), Convert.ToInt32(s[1]));
        //    lp.Size_px = MmToPx(lp.Size_mm);
        //    _label.Add(lp);
        //}

        ///// <summary>
        ///// 删除
        ///// </summary>
        //public void Delete()
        //{
        //    if (labelIdx == -1) return;
        //    System.IO.File.Delete(_label[labelIdx].Path);
        //    _label.RemoveAt(labelIdx);
        //}

        ///// <summary>
        ///// 保存
        ///// </summary>
        //public void Save()
        //{
        //    if (labelIdx == -1) return;
        //    PrintLabel lp = _label[labelIdx];
        //    //_doc = new XmlDocument();
        //    _doc.Load(lp.Path);
        //    _root = _doc.LastChild;
        //    _root.RemoveAll();
        //    XmlAttribute att;

        //    att = _doc.CreateAttribute("Name");
        //    att.Value = lp.Name;
        //    _root.Attributes.Append(att);
        //    att = _doc.CreateAttribute("Size");
        //    att.Value = SizeToStr(lp.Size_mm);
        //    _root.Attributes.Append(att);
        //    att = _doc.CreateAttribute("Offset");
        //    att.Value = PointToStr(lp.PrintOffset);
        //    _root.Attributes.Append(att);

        //    foreach (Model.LabelToPrint.Field lf in lp.Field)
        //    {
        //        _node = _root.AppendChild(_doc.CreateElement("Field"));
        //        att = _doc.CreateAttribute("Type");
        //        att.Value = ((int)lf.Type).ToString();
        //        _node.Attributes.Append(att);
        //        att = _doc.CreateAttribute("Key");
        //        att.Value = lf.Key;
        //        _node.Attributes.Append(att);
        //        att = _doc.CreateAttribute("Rect");
        //        att.Value = RectToStr(lf.Rect_mm);
        //        _node.Attributes.Append(att);
        //        //att = _doc.CreateAttribute("Prefix");
        //        //att.Value = lf.Prefix;
        //        //_node.Attributes.Append(att);
        //        att = _doc.CreateAttribute("Font");
        //        att.Value = ConvFont(lf.Font);
        //        _node.Attributes.Append(att);
        //    }
        //    _doc.Save(lp.Path);
        //}

        ///// <summary>
        ///// 重命名标签
        ///// </summary>
        ///// <param name="s"></param>
        //public void Rename(string s)
        //{
        //    if (labelIdx == -1) return;
        //    _label[labelIdx].Name = s;
        //    Save();
        //}

        ///// <summary>
        ///// 标签改变大小
        ///// </summary>
        ///// <param name="w"></param>
        ///// <param name="h"></param>
        //public void LabelResize(float w, float h)
        //{
        //    if (labelIdx == -1) return;
        //    _label[labelIdx].Size_mm = new SizeF(w, h);
        //    _label[labelIdx].Size_px = MmToPx(_label[labelIdx].Size_mm);
        //    _pic.Refresh();
        //}







        ///// <summary>
        ///// 字段改变大小
        ///// </summary>
        ///// <param name="x"></param>
        ///// <param name="y"></param>
        ///// <param name="w"></param>
        ///// <param name="h"></param>
        //public void ChangeFieldResize(float x, float y, float w, float h)
        //{
        //    if (currField == null) return;
        //    currField.Rect_mm.X = x;
        //    currField.Rect_mm.Y = y;
        //    currField.Rect_mm.Width = w;
        //    currField.Rect_mm.Height = h;
        //    currField.Rect_px = MmToPx(currField.Rect_mm);
        //    _pic.Refresh();
        //}

        ///// <summary>
        ///// 字段改变关键字
        ///// </summary>
        ///// <param name="s"></param>
        //public void ChangeFieldKey(string s)
        //{
        //    if (currField == null) return;
        //    currField.Key = s;
        //    if (currField.Type != Model.LabelToPrint.FieldType.Text)
        //        currField.Image = ConvertBarcode.StrToCode(currField.Type, currField.Key, currField.Rect_px.Size);
        //    _pic.Refresh();
        //}







        ///// <summary>
        ///// 设置索引
        ///// </summary>
        ///// <param name="idx"></param>
        //public void FindIndex(int idx)
        //{
        //    if (idx < 0 || idx >= _label.Count) return;

        //    labelIdx = idx;
        //    fieldIdx = -1;
        //    if (_pic != null)
        //    {
        //        offset = new Point(Convert.ToInt32((_pic.Width - _label[idx].Size_px.Width) / 2), Convert.ToInt32((_pic.Height - _label[idx].Size_px.Height) / 2));
        //        _pic.Refresh();
        //    }
        //}

        //public void FindDefault(string name)
        //{
        //    int n = _label.FindIndex(s => s.Name == name);
        //    defaultIdx = n;
        //}

        //public void ResizeLabel()
        //{
        //    //FrmResize frm = new FrmResize(label[labelIdx].Size_mm);
        //    //if (frm.ShowDialog() != DialogResult.OK) return;
        //    //label[labelIdx].Size_mm = frm.Rect.Size;
        //    //label[labelIdx].Size_px = MmToPx(label[labelIdx].Size_mm);
        //    //if (picEdit != null) picEdit.Refresh();
        //}

        //public void FieldResize()
        //{
        //    //if (fieldIdx == -1) return;
        //    //FrmResize frm = new FrmResize(label[labelIdx].Field[fieldIdx].Rect_mm);
        //    //if (frm.ShowDialog() != DialogResult.OK) return;
        //    //label[labelIdx].Field[fieldIdx].Rect_mm = frm.Rect;
        //    //label[labelIdx].Field[fieldIdx].Rect_px = MmToPx(label[labelIdx].Field[fieldIdx].Rect_mm);
        //    //if (picEdit != null) picEdit.Refresh();
        //}





        //public void PrintLast(Dictionary<string, string> text, string printName, bool printLandscape, out string[] code)
        //{
        //    code = null;

        //    try
        //    {

        //        if (defaultIdx == -1) return;
        //        List<string> content = new List<string>();

        //        for (int i = 0; i < _label[defaultIdx].Field.Count; i++)
        //        {
        //            Model.LabelToPrint.Field field = _label[defaultIdx].Field[i];
        //            field.Text = field.Key;
        //            string[] keys = StrGetKey(field.Key);
        //            for (int j = 0; j < keys.Length; j++)
        //            {
        //                if (text.ContainsKey(keys[j]))
        //                    field.Text = field.Text.Replace("{" + keys[j] + "}", text[keys[j]]);
        //            }
        //            if (field.Type != Model.LabelToPrint.FieldType.Text)
        //            {
        //                field.Image = ConvertBarcode.StrToCode(field.Type, field.Text, field.Rect_px.Size);
        //                content.Add(field.Text);
        //            }
        //        }

        //        code = content.ToArray();
        //        System.Drawing.Printing.PrintDocument print = new System.Drawing.Printing.PrintDocument();
        //        //int w = Convert.ToInt32(_label[defaultIdx].Size_px.Width * 100f);
        //        //int h = Convert.ToInt32(_label[defaultIdx].Size_px.Height * 100f);
        //        //print.DefaultPageSettings.PaperSize = new System.Drawing.Printing.PaperSize("Custom", w, h);
        //        print.PrinterSettings.PrinterName = printName;
        //        print.DefaultPageSettings.Landscape = printLandscape;
        //        print.PrintPage += PrintLast_PrintPage;
        //        print.Print();
        //        print.Dispose();
        //    }
        //    catch(Exception ex)
        //    {
        //        Model.Log.Error("PrintLast", ex);
        //    }
        //}







        //private SizeF StrToSizeF(string s)
        //{
        //    string[] tt = s.Split(',');
        //    return new SizeF(Convert.ToSingle(tt[0]), Convert.ToSingle(tt[1]));
        //}

        //private Point StrToPoint(string s)
        //{
        //    string[] tt = s.Split(',');
        //    return new Point(Convert.ToInt32(tt[0]), Convert.ToInt32(tt[1]));
        //}





        //private RectangleF StrToRectF(string s)
        //{
        //    string[] tt = s.Split(',');
        //    return new RectangleF(Convert.ToSingle(tt[0]), Convert.ToSingle(tt[1]), Convert.ToSingle(tt[2]), Convert.ToSingle(tt[3]));
        //}



        //private string PointToStr(Point pt)
        //{
        //    return string.Format("{0},{1}", pt.X, pt.Y);
        //}




























        //private void PrintLast_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
        //{
        //    //Point pt = _label[labelIdx].PrintOffset;

        //    for (int i = 0; i < _label[defaultIdx].Field.Count; i++)
        //    {
        //        Model.LabelToPrint.Field field = _label[defaultIdx].Field[i];
        //        if (field.Type == Model.LabelToPrint.FieldType.Text)
        //            e.Graphics.DrawString(field.Text, field.Font, Brushes.Black, field.Rect_px);
        //        else
        //        {
        //            if (field.Image != null)
        //                e.Graphics.DrawImage(field.Image, field.Rect_px);
        //        }
        //    }
        //}

    }









    ///// <summary>
    ///// 完整的标签,用于打印
    ///// </summary>
    //public class PrintLabel
    //{
    //    /// <summary>
    //    /// 文件路径
    //    /// </summary>
    //    public string Path { set; get; } = "";
    //    /// <summary>
    //    /// 标签名称
    //    /// </summary>
    //    public string Name { set; get; } = "";
    //    /// <summary>
    //    /// 标签大小,毫米
    //    /// </summary>
    //    public SizeF Size_mm { get; set; } = new SizeF(0, 0);
    //    /// <summary>
    //    /// 标签大小,像素
    //    /// </summary>
    //    public SizeF Size_px { get; set; } = new SizeF(0, 0);
    //    /// <summary>
    //    /// 打印偏移量
    //    /// </summary>
    //    public Point PrintOffset { get; set; } = new Point(0, 0);
    //    /// <summary>
    //    /// 包含的字段
    //    /// </summary>
    //    public List<Model.LabelToPrint.Field> Field = new List<Model.LabelToPrint.Field>();
    //}






}