国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

使用netdxf(C#)框架實現(xiàn)dxf文件讀取與導出坐標

這篇具有很好參考價值的文章主要介紹了使用netdxf(C#)框架實現(xiàn)dxf文件讀取與導出坐標。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

使用netdxf(C#)框架實現(xiàn)dxf文件讀取與導出坐標

一、新建窗體應用程序DxfToolDemo,將默認的Form1重命名為FormDxfTool

窗體FormDxfTool.Designer.cs設計器源程序如下:


namespace DxfToolDemo
{
    partial class FormDxfTool
    {
        /// <summary>
        /// 必需的設計器變量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的資源。
        /// </summary>
        /// <param name="disposing">如果應釋放托管資源,為 true;否則為 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗體設計器生成的代碼

        /// <summary>
        /// 設計器支持所需的方法 - 不要修改
        /// 使用代碼編輯器修改此方法的內容。
        /// </summary>
        private void InitializeComponent()
        {
            this.rtxtMessage = new System.Windows.Forms.RichTextBox();
            this.btnOpenDxf = new System.Windows.Forms.Button();
            this.btnExportCsv = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // rtxtMessage
            // 
            this.rtxtMessage.Location = new System.Drawing.Point(12, 70);
            this.rtxtMessage.Name = "rtxtMessage";
            this.rtxtMessage.Size = new System.Drawing.Size(1102, 529);
            this.rtxtMessage.TabIndex = 0;
            this.rtxtMessage.Text = "";
            // 
            // btnOpenDxf
            // 
            this.btnOpenDxf.Font = new System.Drawing.Font("宋體", 15F);
            this.btnOpenDxf.Location = new System.Drawing.Point(23, 12);
            this.btnOpenDxf.Name = "btnOpenDxf";
            this.btnOpenDxf.Size = new System.Drawing.Size(127, 43);
            this.btnOpenDxf.TabIndex = 1;
            this.btnOpenDxf.Text = "打開Dxf文件";
            this.btnOpenDxf.UseVisualStyleBackColor = true;
            this.btnOpenDxf.Click += new System.EventHandler(this.btnOpenDxf_Click);
            // 
            // btnExportCsv
            // 
            this.btnExportCsv.Font = new System.Drawing.Font("宋體", 15F);
            this.btnExportCsv.Location = new System.Drawing.Point(185, 12);
            this.btnExportCsv.Name = "btnExportCsv";
            this.btnExportCsv.Size = new System.Drawing.Size(182, 43);
            this.btnExportCsv.TabIndex = 2;
            this.btnExportCsv.Text = "導出坐標為.CSV";
            this.btnExportCsv.UseVisualStyleBackColor = true;
            this.btnExportCsv.Click += new System.EventHandler(this.btnExportCsv_Click);
            // 
            // FormDxfTool
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1126, 611);
            this.Controls.Add(this.btnExportCsv);
            this.Controls.Add(this.btnOpenDxf);
            this.Controls.Add(this.rtxtMessage);
            this.Name = "FormDxfTool";
            this.Text = "Dxf轉化工具【CAD文件轉坐標】";
            this.Load += new System.EventHandler(this.FormDxfTool_Load);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.RichTextBox rtxtMessage;
        private System.Windows.Forms.Button btnOpenDxf;
        private System.Windows.Forms.Button btnExportCsv;
    }
}

二、右鍵 項目DxfToolDemo, 管理NuGet程序包,輸入關鍵字netDxf,下載該程序包

使用netdxf(C#)框架實現(xiàn)dxf文件讀取與導出坐標,Dxf,netDxf,Dxf文件轉化坐標,c#,Dxf工具,CAD圖紙導出坐標

三、netDxf框架關鍵類型說明:

關鍵結構 netDxf.Vector3
? ? ? ? ? ? 可以認為是立體三維坐標(x,y,z)
關鍵結構 netDxf.Vector2
? ? ? ? ? ? 可以認為是平面二維坐標(x,y)

DxfDocument用于讀寫dxf文件

? ? ? 關鍵函數(shù)Load()用于加載文件

? ? ? 添加實體:dxfDocument.Entities.Add(EntityObject entity);

? ? ? 關鍵函數(shù)Save()用于保存文件?

關鍵屬性: Entities: 對應類型 netDxf.Collections.DrawingEntities

密封類DrawingEntities由一系列【點、線、圓等】集合組成,允許直接訪問與圖形中實體相關的操作

對應的各種實體EntityObject說明:
netDxf.Entities.EntityObject:
? ? ? ? Gets the complete list entities contained in the active layout.
? ? ? ? 抽象類,以下所有實體對象的父類

netDxf.Entities.PolyfaceMesh:
? ? Represents a polyface mesh entity.

netDxf.Entities.Text:
? ? Gets the list of texts in the active layout.
? ? ? ? ? ?
?netDxf.Entities.MText: ? ? ??
? ? ?Gets the list of multiline texts in the active layout.

?netDxf.Entities.Hatch: ? ? ??
? ? ?Gets the list of hatches in the active layout.

?netDxf.Entities.Image: ? ??
? ? ?Gets the list of images in the active layout.
?
netDxf.Entities.Mesh: ? ? ?
? ? ? ? Gets the list of mesh in the active layout.
?
netDxf.Entities.Leader: ? ? ? ?
? ? ? ? Gets the list of leader in the active layout.
? ? ? ? ? ? ?
netDxf.Entities.Point:
? ? ? ? Gets the list of points in the active layout.
? ? ? ??
netDxf.Entities.Tolerance:
? ? ? ? Gets the list of tolerance in the active layout.
? ? ? ??
netDxf.Entities.MLine:
? ? ? ? Gets the list of multilines in the active layout.
? ? ? ??
netDxf.Entities.Dimension:
? ? ? ? Gets the list of dimensions in the active layout.
? ? ? ??
netDxf.Entities.Spline:
? ? ? ? Gets the list of splines in the active layout.
? ? ? ? ?
netDxf.Entities.Ray:
? ? ? ? Gets the list of rays in the active layout.

netDxf.Entities.Viewport: ? ? ? ?
? ? ? ? Gets the list of viewports in the active layout.

netDxf.Entities.XLine:
? ? ? ? Gets the list of extension lines in the active layout.
? ? ? ??
netDxf.Entities.Underlay:
? ? ? ? Gets the list of underlay in the active layout.
? ? ? ?
netDxf.Entities.PolygonMesh:
? ? ? ? Gets the list of polygon meshes in the active layout.

netDxf.Entities.AttributeDefinition:
? ? ? ? Gets the list of attribute definitions in the active layout.

netDxf.Entities.Polyline3D:
? ? ? ? Gets the list of polylines in the active layout.

netDxf.Entities.Arc:
? ? ? ? Gets the list of arcs contained in the active layout.?

netDxf.Entities.Ellipse:
? ? ? ? Gets the list of ellipses in the active layout.

netDxf.Entities.Wipeout:
? ? ? ? Gets the list of wipeouts in the active layout.?

netDxf.Entities.Face3D:
? ? ? ? Gets the list of 3d faces in the active layout.

netDxf.Entities.Circle:
? ? ? ? Gets the list of circles in the active layout.

netDxf.Entities.Trace:
? ? ? ? Gets the list of traces in the active layout.

netDxf.Entities.Insert:
? ? ? ? Gets the list of inserts in the active layout.

netDxf.Entities.Line:
? ? ? ? Gets the list of lines in the active layout.

netDxf.Entities.Shape:
? ? ? ? Gets the list of shapes in the active layout.

netDxf.Entities.Polyline2D:
? ? ? ? Gets the list of polylines in the active layout.

netDxf.Entities.Solid:
? ? ? ? Gets the list of solids in the active layout.

四、新建csv導出類CsvUtil,

CsvUtil.cs源程序如下:

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace DxfToolDemo
{
    public class CsvUtil
    {
        /// <summary>
        /// 寫CSV日志 按列顯示
        /// </summary>
        /// <param name="fileName"></param>
        /// <param name="coordList">元組:圓心坐標,半徑,模板名</param>
        /// <returns></returns>
        public static bool WriteCoordinateLogCsv(string fileName, List<Tuple<netDxf.Vector3, double, string>> coordList)
        {
            if (coordList == null || coordList.Count == 0) 
            {
                return false;
            }
            try
            {
                string directoryPath = Path.GetDirectoryName(fileName);
                if (!Directory.Exists(directoryPath))
                {
                    Directory.CreateDirectory(directoryPath);
                }
                string columnContents = "模板名,極柱序號,圓心X坐標,圓心Y坐標,圓心Z坐標,圓心半徑\r\n";
                if (!File.Exists(fileName))
                {
                    File.AppendAllText(fileName, columnContents, Encoding.Default);
                }

                StringBuilder sb = new StringBuilder();
                using (StreamWriter write = new StreamWriter(fileName, true, Encoding.Default))
                {
                    for (int i = 0; i < coordList.Count; i++)
                    {
                        sb = new StringBuilder();
                        sb.Append($"{ProcessPunctuationForCsv(coordList[i].Item3)},");
                        sb.Append($"{i + 1},");
                        sb.Append($"{coordList[i].Item1.X},");
                        sb.Append($"{coordList[i].Item1.Y},");
                        sb.Append($"{coordList[i].Item1.Z},");
                        sb.Append($"{coordList[i].Item2}");
                        write.WriteLine(sb.ToString());
                    }                    
                }
                return true;
            }
            catch (Exception ex)
            {
                System.Windows.Forms.MessageBox.Show("CSV文件寫入失?。? + ex.Message);
                return false;
            }
        }

        /// <summary>
        /// 處理csv文件中的雙引號和逗號,使其在Excel中完美顯示為一個單元格
        /// 斯內科
        /// </summary>
        /// <param name="srcStr"></param>
        /// <returns></returns>
        private static string ProcessPunctuationForCsv(string srcStr)
        {
            if (srcStr == null)
            {
                return string.Empty;
            }
            bool quoteFlag = false;//是否添加過雙引號
            //如果存在雙引號,需要將字符串的一個雙引號 替換為 兩個雙引號。并且需要在字符串的前后加上雙引號
            if (srcStr.Contains("\""))
            {
                srcStr = srcStr.Replace("\"", "\"\"");
                srcStr = "\"" + srcStr + "\"";
                quoteFlag = true;
            }
            //如果只存在逗號(不存在引號),將前后加引號即可
            if (srcStr.Contains(",") && !quoteFlag)
            {
                srcStr = "\"" + srcStr + "\"";
            }
            return srcStr;
        }
    }
}

五、窗體程序如下:

FormDxfTool.cs源程序:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

using netDxf;
using netDxf.Collections;
using netDxf.Entities;

namespace DxfToolDemo
{
    public partial class FormDxfTool : Form
    {
        public FormDxfTool()
        {
            InitializeComponent();
            rtxtMessage.ReadOnly = true;            
        }

        /// <summary>
        /// 顯示推送消息
        /// </summary>
        /// <param name="msg"></param>
        private void DisplayMessage(string msg)
        {
            this.BeginInvoke(new Action(() =>
            {
                if (rtxtMessage.TextLength > 20480)
                {
                    rtxtMessage.Clear(); 
                }
                rtxtMessage.AppendText($"{DateTime.Now.ToString("HH:mm:ss.fff")}->{msg}\n");
                rtxtMessage.ScrollToCaret();
            }));
        }

        private void btnOpenDxf_Click(object sender, EventArgs e)
        {
            rtxtMessage.Clear();
            OpenFileDialog openFileDialog = new OpenFileDialog();
            openFileDialog.InitialDirectory = AppDomain.CurrentDomain.BaseDirectory;
            openFileDialog.Filter = "dxf|*.dxf|All|*.*";
            DialogResult dialog = openFileDialog.ShowDialog();
            if (dialog != DialogResult.OK)
            {
                return;
            }
            string fileName = openFileDialog.FileName;//AppDomain.CurrentDomain.BaseDirectory + "testFile\\藍本-CAD.dxf"
            DisplayMessage($"CAD文件dxf路徑為【{fileName}】");
            DxfDocument dxfDocument = DxfDocument.Load(fileName);
            DisplayMessage($"活動布局的名稱為【{dxfDocument.Entities.ActiveLayout}】");
            rtxtMessage.Tag = dxfDocument.Entities;
            IEnumerable<Circle> circles = dxfDocument.Entities.Circles;
            int circleCount = circles.Count();
            DisplayMessage($"讀取到圓Circle的個數(shù)為【{circleCount}】");
            for (int i = 0; i < circleCount; i++)
            {
                Circle circle = circles.ElementAt(i);
                DisplayMessage($"\x20\x20圓【{(i + 1).ToString("D3")}】,圓心坐標【({circle.Center})】,半徑【{circle.Radius}】");
            }            
        }

        private void btnExportCsv_Click(object sender, EventArgs e)
        {
            DrawingEntities drawingEntities = rtxtMessage.Tag as DrawingEntities;
            if (drawingEntities == null) 
            {
                return;
            }
            List<Tuple<Vector3, double, string>> coordList = new List<Tuple<Vector3, double, string>>();
            IEnumerable<Circle> circles = drawingEntities.Circles;
            int circleCount = circles.Count();//找出所有的圓
            for (int i = 0; i < circleCount; i++)
            {
                Circle circle = circles.ElementAt(i);
                //元組:圓心坐標,半徑,活動設計名
                coordList.Add(Tuple.Create(circle.Center, circle.Radius, drawingEntities.ActiveLayout));
            }
            string fileName = AppDomain.CurrentDomain.BaseDirectory + "testFile\\藍本.csv";
            bool result = CsvUtil.WriteCoordinateLogCsv(fileName, coordList);
            MessageBox.Show($"導出csv文件結果【{result}】\n路徑:{fileName}");
        }

        private void FormDxfTool_Load(object sender, EventArgs e)
        {
            /*
             * 1、讀取dxf文件的思路
新建DxfDocument對象-調用Load方法讀取對應地址的dxf文件并保存在新建的DxfDocument對象中-從新建的DxfDocument對象中讀取對應的元素
讀取dxf文件:
DxfDocument dxf = DxfDocument.Load("藍本.dxf");

關鍵結構 netDxf.Vector3
            可以認為是立體三維坐標(x,y,z)
關鍵結構 netDxf.Vector2
            可以認為是平面二維坐標(x,y)
 讀取文件中的核心屬性:
Entities:
對應類型 netDxf.Collections.DrawingEntities
            密封類DrawingEntities由一系列【點、線、圓等】集合組成,允許直接訪問與圖形中實體相關的操作
netDxf.Entities.EntityObject:
        Gets the complete list entities contained in the active layout.
        抽象類,以下所有實體對象的父類

netDxf.Entities.PolyfaceMesh:
    Represents a polyface mesh entity.

netDxf.Entities.Text:
    Gets the list of texts in the active layout.
           
 netDxf.Entities.MText:       
     Gets the list of multiline texts in the active layout.

 netDxf.Entities.Hatch:       
     Gets the list of hatches in the active layout.

 netDxf.Entities.Image:     
     Gets the list of images in the active layout.
 
netDxf.Entities.Mesh:      
        Gets the list of mesh in the active layout.
 
netDxf.Entities.Leader:        
        Gets the list of leader in the active layout.
             
netDxf.Entities.Point:
        Gets the list of points in the active layout.
        
netDxf.Entities.Tolerance:
        Gets the list of tolerance in the active layout.
        
netDxf.Entities.MLine:
        Gets the list of multilines in the active layout.
        
netDxf.Entities.Dimension:
        Gets the list of dimensions in the active layout.
        
netDxf.Entities.Spline:
        Gets the list of splines in the active layout.
         
netDxf.Entities.Ray:
        Gets the list of rays in the active layout.

netDxf.Entities.Viewport:        
        Gets the list of viewports in the active layout.

netDxf.Entities.XLine:
        Gets the list of extension lines in the active layout.
        
netDxf.Entities.Underlay:
        Gets the list of underlay in the active layout.
       
netDxf.Entities.PolygonMesh:
        Gets the list of polygon meshes in the active layout.

netDxf.Entities.AttributeDefinition:
        Gets the list of attribute definitions in the active layout.

netDxf.Entities.Polyline3D:
        Gets the list of polylines in the active layout.

netDxf.Entities.Arc:
        Gets the list of arcs contained in the active layout. 

netDxf.Entities.Ellipse:
        Gets the list of ellipses in the active layout.

netDxf.Entities.Wipeout:
        Gets the list of wipeouts in the active layout. 

netDxf.Entities.Face3D:
        Gets the list of 3d faces in the active layout.

netDxf.Entities.Circle:
        Gets the list of circles in the active layout.

netDxf.Entities.Trace:
        Gets the list of traces in the active layout.

netDxf.Entities.Insert:
        Gets the list of inserts in the active layout.

netDxf.Entities.Line:
        Gets the list of lines in the active layout.

netDxf.Entities.Shape:
        Gets the list of shapes in the active layout.

netDxf.Entities.Polyline2D:
        Gets the list of polylines in the active layout.

netDxf.Entities.Solid:
        Gets the list of solids in the active layout.            
            */
        }
    }
}

六、運行效果如圖:

【獲取所有半徑為3的圓極柱】

導出csv

使用netdxf(C#)框架實現(xiàn)dxf文件讀取與導出坐標,Dxf,netDxf,Dxf文件轉化坐標,c#,Dxf工具,CAD圖紙導出坐標?文章來源地址http://www.zghlxwxcb.cn/news/detail-794149.html

到了這里,關于使用netdxf(C#)框架實現(xiàn)dxf文件讀取與導出坐標的文章就介紹完了。如果您還想了解更多內容,請在右上角搜索TOY模板網以前的文章或繼續(xù)瀏覽下面的相關文章,希望大家以后多多支持TOY模板網!

本文來自互聯(lián)網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。如若轉載,請注明出處: 如若內容造成侵權/違法違規(guī)/事實不符,請點擊違法舉報進行投訴反饋,一經查實,立即刪除!

領支付寶紅包贊助服務器費用

相關文章

  • C#使用MiniExcel導入導出數(shù)據(jù)到Excel/CSV文件

    MiniExcel簡介 簡單、高效避免OOM的.NET處理Excel查、寫、填充數(shù)據(jù)工具。 目前主流框架大多需要將數(shù)據(jù)全載入到內存方便操作,但這會導致內存消耗問題,MiniExcel 嘗試以 Stream 角度寫底層算法邏輯,能讓原本1000多MB占用降低到幾MB,避免內存不夠情況。 特點: 低內存耗用,避免

    2024年02月19日
    瀏覽(94)
  • 【辦公軟件】C#調用NPOI實現(xiàn)Excel文件的加載、導出功能

    本文將介紹如何使用C#和NPOI庫實現(xiàn)Excel文件的讀寫操作,并通過加載文件和導出文件的按鈕進行封裝。NPOI是一個強大的.NET庫,可以輕松處理Excel文件。我們將學習如何使用NPOI打開現(xiàn)有的Excel文件、讀取數(shù)據(jù),并將數(shù)據(jù)寫入到Excel文件中。 在開始之前,請確保已安裝以下環(huán)境:

    2024年02月06日
    瀏覽(32)
  • 設置Solidworks導出文件的坐標系,stl坐標系平移

    設置Solidworks導出文件的坐標系,stl坐標系平移

    在OpenGL中使用導出的stl模型時發(fā)現(xiàn)坐標系不在原點: 使用solidworks 打開這個stl,發(fā)現(xiàn)果然不對 ?不滿意,必須改過來?。?! 首先打開solidworks原文件 新建坐標系 ? 建立完成---坐標系1? ? 輸出時點擊-選項 ?輸出坐標系--坐標系1 ?然后保存就完成了。 再看看 ? ?end 上邊方法復

    2024年02月11日
    瀏覽(188)
  • Word控件Aspose.Words教程:使用 C# 讀取 SXC 和 FODS 文件

    Aspose.Words是一種高級Word文檔處理API,用于執(zhí)行各種文檔管理和操作任務。API支持生成,修改,轉換,呈現(xiàn)和打印文檔,而無需在跨平臺應用程序中直接使用Microsoft Word。 Aspose支持流行文件格式處理,并允許將各類文檔導出或轉換為固定布局文件格式和最常用的圖像/多媒體格

    2024年02月10日
    瀏覽(24)
  • C#【必備技能篇】使用NPOI實現(xiàn)對excel的讀取和寫入

    C#【必備技能篇】使用NPOI實現(xiàn)對excel的讀取和寫入

    依次執(zhí)行下圖中的1-6按鈕 , 可以通過查看程序文件夾中的excel文件來加深理解。 鏈接:https://pan.baidu.com/s/19PgQMhCKviw9aBAjmJHSww 提取碼:2omi 需要在源碼中增加如下引用。相應的dll已更新到 5 的下載地址中。

    2023年04月13日
    瀏覽(25)
  • 搭建GDAL JAVA環(huán)境;DXF轉KML;坐標轉換;PROJ: proj_create_from_database 錯誤解決

    搭建GDAL JAVA環(huán)境;DXF轉KML;坐標轉換;PROJ: proj_create_from_database 錯誤解決

    GDAL是一個柵格和矢量地理空間數(shù)據(jù)格式的轉換庫,由開源地理空間基金會按照MIT開源協(xié)議發(fā)布。作為一個庫,它向應用程序為所有支持的數(shù)據(jù)格式提供統(tǒng)一的柵格抽象數(shù)據(jù)模型和矢量抽象數(shù)據(jù)模型。它還提供了用于數(shù)據(jù)轉換和處理的各種有用的命令行實用工具。 GDAL官網:

    2024年02月05日
    瀏覽(18)
  • C# 使用NModbus4進行TCP讀取,并且實現(xiàn)自動斷線重連

    C# 使用NModbus4進行TCP讀取,并且實現(xiàn)自動斷線重連

    2024年02月09日
    瀏覽(15)
  • 045:Vue讀取本地上傳JSON文件,導出JSON文件方法

    045:Vue讀取本地上傳JSON文件,導出JSON文件方法

    第045個 查看專欄目錄: VUE ------ element UI 在vue和element UI聯(lián)合技術棧的操控下,本專欄提供行之有效的源代碼示例和信息點介紹,做到靈活運用。 (1)提供vue2的一些基本操作:安裝、引用,模板使用,computed,watch,生命周期(beforeCreate,created,beforeMount,mounted, beforeUpdate,upda

    2024年02月04日
    瀏覽(96)
  • 【Spring】1、Spring 框架的基本使用【讀取配置文件、IoC、依賴注入的幾種方式、FactoryBean】

    【Spring】1、Spring 框架的基本使用【讀取配置文件、IoC、依賴注入的幾種方式、FactoryBean】

    Spring 框架可以說是 Java 開發(fā)中最重要的框架,功能 非常 強大 中文文檔:https://springdoc.cn/spring/ 官網:https://spring.io/ Spring makes Java Simple、modern、productive … Spring 框架的幾個核心概念: IoC: I nversion o f C ontrol:控制反轉 DI: D ependency I njection:依賴注入 AOP: A spect O riented P rogram

    2024年02月09日
    瀏覽(25)
  • dxf文件用什么打開(dxf文件格式介紹)

    很多機械設計小伙伴日常工作都會接觸到dxf文件,那么dxf是什么文件格式呢?以及dxf文件用什么打開?相信這都是很多機械設計小伙伴關心的問題,接下來小編就來跟大家講解一下。 DXF文件是一種廣泛使用的CAD數(shù)據(jù)文件格式,它可以使不同軟件之間的CAD數(shù)據(jù)交換更加方便。

    2024年02月05日
    瀏覽(17)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領取紅包,優(yōu)惠每天領

二維碼1

領取紅包

二維碼2

領紅包