将按钮标签复制到剪贴板

发布于 2024-11-06 01:01:51 字数 446 浏览 1 评论 0原文

我正在使用

private void Form1_Load(object sender, EventArgs e)
{
    int i = 1;
    var allLines = File.ReadAllLines(@"c:\text.txt");

    foreach (var line in allLines)
    {
        var b = new Button();
        b.Text = line;
        b.AutoSize = true;
        b.Location = new Point(22, b.Size.Height * i);
        this.Controls.Add(b);
        i++;
    }
}

文本文件创建一堆按钮,

如何控制所有按钮的行为 - 我希望它们将标签复制到剪贴板

I'm using

private void Form1_Load(object sender, EventArgs e)
{
    int i = 1;
    var allLines = File.ReadAllLines(@"c:\text.txt");

    foreach (var line in allLines)
    {
        var b = new Button();
        b.Text = line;
        b.AutoSize = true;
        b.Location = new Point(22, b.Size.Height * i);
        this.Controls.Add(b);
        i++;
    }
}

to create a bunch of buttons from a text file

how can i control the behaviour of all buttons - i want them to copy the label to clipboard

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只为守护你 2024-11-13 01:01:51

将其添加到 this.Controls.Add(b) 行之前:

b.Click += EventHandler((s, e) => Clipboard.SetText(line));

这会为 Click 事件创建一个处理程序,将该行复制到剪贴板。

有关 Windows 窗体编程的更多信息,可以从 Microsoft 自己的 WindowsClient.NET 网站开始。如今,很多信息都偏向于 WPF,但仍然应该有大量的 Forms 内容。

Add this just before the this.Controls.Add(b) line:

b.Click += EventHandler((s, e) => Clipboard.SetText(line));

This creates an handler for the Click event that copies the line to the clipboard.

For more information about Windows Forms programming a good starting point is Microsoft's own WindowsClient.NET website. A lot of the information is skewed towards WPF these days but there should still be plenty of Forms stuff around.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文