0

如果按钮文本包含在我的 中,如何更改按钮图像List<>

我在字典中添加了我的按钮名称和文本。我也有我的房间名称列表。我在表单上有 40 个按钮,每个按钮上都有数字。每个按钮代表一个房间,按钮文本是房间号。我的列表 NameRoom 是保留房间列表。我正在尝试更改已保留按钮的图片。所以我不是要更改文本,而是要更改按钮的图像。谢谢

foreach (int roomN in NameRoom)
{
    if (dictionary.ContainsKey(roomN))
    {
        string buttonName = dictionary[roomN];
        Button button = new Button();
        button.Name = buttonName;

        //ImageBrush myBrush = new ImageBrush();
        //var urisource = new Uri(@"Resources\dolu.jpg", UriKind.Relative);
        //myBrush.ImageSource = new BitmapImage(urisource);
        //button.BackgroundImage = myBrush;
        button.Image = ((System.Drawing.Image)(Properties.Resources.Merdivan));

        //button.Image = System.Drawing.Image.FromFile(@"Resources\dolu.jpg");   
   }
}
4

2 回答 2

0

按钮名称。您必须提供使用名称的上下文。我相信你想说的是文字。

Button button = new Button();
button.Text = "Something"

这将更改按钮上显示的文本。如果您真的想更改名称,请告诉我们这样做的原因和一些上下文。

干杯

于 2013-05-16T13:10:11.397 回答
0

表格?如果是,请尝试以下操作:

        foreach (int roomN in NameRoom)
        {
            if (dictionary.ContainsKey(roomN))
            {
                string buttonName = dictionary[roomN];
                Control[] matches = this.Controls.Find(buttonName, true);
                if (matches.Length > 0 && matches[0] is Button)
                {
                    Button button = (Button)matches[0];
                    button.Image = ((System.Drawing.Image)(Properties.Resources.Merdivan));
                }
            }
        }
于 2013-05-16T14:35:20.247 回答