gpt4 book ai didi

c# - 如何通过文本框获取消息

转载 作者:太空宇宙 更新时间:2023-11-03 12:40:11 26 4
gpt4 key购买 nike

我有带有命令列表的文本框接口(interface),我想在用户将鼠标悬停在文本框上时显示此列表。

我可以用标签放置消息,但似乎这不是最好的方式,看起来不太好

这里是我想要的方式和标签一样:

enter image description here

也许你可以建议我一些更好的展示方式,也很有趣

最佳答案

作为Reza Aghaei已经说过要使用 ToolTip .方法如下:

创建和返回列表:

static List<string> PopulateList()
{
List<string> mylist = new List<string>();
mylist.Add("insert (a1) to get this");
mylist.Add("insert (a2) to get this");
mylist.Add("insert (a3) to get this");
mylist.Add("insert (a4) to get this");
...
...
return mylist;
}

在 TextBox 的 Enter 事件上显示工具提示:

private void textBox1_Enter(object sender, EventArgs e)
{
string tooltiptext = "";
List<string> mylist = PopulateList();
foreach (string listitem in mylist)
{
tooltiptext += listitem + "\n";
}
ToolTip tt = new ToolTip();
tt.Show(tooltiptext, textBox1, 2000);
}

结果:

tooltip

关于c# - 如何通过文本框获取消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39337081/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com