基本信息
源码名称:C# 批量生成二维码
源码大小:2.21M
文件格式:.rar
开发语言:C#
更新时间:2021-05-17
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 5 元 
   源码介绍

批量生成二维码

public Form1()
        {
            InitializeComponent();
        }

        private void btnOne_Click(object sender, EventArgs e)
        {
            string str;
            int count = richboxInput.Lines.Length;
            for (int i = 0; i < count; i )
            {
                str = richboxInput.Lines[i];
                if (String.IsNullOrEmpty(str))
                {
                    return;
                }
                pic p = new pic();
                p.text = str.Trim();
                p.ShowDialog();
            }
        }

        private void btnAny_Click(object sender, EventArgs e)
        {
            List<UserControl1> lus = new List<UserControl1>();
            string str;
            int count = richboxInput.Lines.Length;
            for (int i = 0; i < count; i )
            {
                str = richboxInput.Lines[i];
                if (String.IsNullOrEmpty(str))
                {
                    continue;
                }
                UserControl1 ul = new UserControl1(str);
                lus.Add(ul);
            }

            Pic2 p = new Pic2(lus);
            p.ShowDialog();
        }

        private void btnInput_Click(object sender, EventArgs e)
        {
            //选择文件
            OpenFileDialog dialog = new OpenFileDialog();
            dialog.Multiselect = true;//该值确定是否可以选择多个文件
            dialog.Title = @"请选择文件夹";
            dialog.Filter = @"所有文件(*.txt)|*.txt";
            if (dialog.ShowDialog() ==  DialogResult.OK)
            {
                string file = dialog.FileName;
                richboxInput.Text = File.ReadAllText(file);
            }
        }