嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 5 元微信扫码支付:5 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
批量生成二维码
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);
}
}