1
我有一個窗體上的工具條的控制和編程方式使用下面的代碼如何在C#中獲取所選toolstripbutton指數
toolStrip1.Visible = true;
ToolStripItem t = new ToolStripButton();
t.Text = client.EndPoint.ToString();
t.TextImageRelation = TextImageRelation.ImageAboveText;
t.BackgroundImage = Image.FromFile("" + Application.StartupPath + "ps1_new.PNG");
t.AutoSize = false;
t.Height = 67;
t.Width = 70;
t.BackgroundImageLayout = ImageLayout.Stretch;
t.TextAlign = ContentAlignment.BottomCenter;
toolStrip1.Items.Add(t);
現在即時通訊試圖讓工具條的索引按鈕添加到工具條控制按鈕,當我點擊它 注意到我能得到的點擊文本toolstripbutton使用
e.ClickedItem.Text;