C# 加载文件按钮标签

本文关键字:标签 按钮 文件 加载 | 更新日期: 2023-09-27 17:55:38

我正在使用richTextBox1.LoadFile(open.FileName, RichTextBoxStreamType.PlainText); 以在文本框中加载文件。

我想做的是逐行加载文件,每一行都作为按钮的标签以这种方式具有多个按钮,每个按钮都带有文件中的每一行

我正在使用 C# 和 Visual Studio 2010 Express

C# 加载文件按钮标签

这里有一些东西可以让你开始:

 private void Form1_Load(object sender, EventArgs e)
 {
     int i = 1;
     var allLines = File.ReadAllLines(@"c:'temp'test.txt");
     foreach (var line in allLines)
     {
         var b = new Button();
         b.Text = line;
         b.AutoSize = true; 
         b.Location = new Point(0, b.Size.Height * i);
         this.Controls.Add(b);
         i++;
     }
 }