单击Bunifu Framework TextBox然后如何调用“SelectAll()”函数?因为我想选择TextBox中的所有文本。请帮忙
答案 0 :(得分:1)
这是一个快速修复
//replace (Bunifu.Framework.UI.BunifuMaterialTextbox) with your specified type of textbox
private void SelectAll(Bunifu.Framework.UI.BunifuMaterialTextbox metroTextbox)
{
foreach (var ctl in metroTextbox.Controls)
{
if (ctl.GetType() == typeof(TextBox))
{
var txt = (TextBox)ctl;
txt.SelectAll();
}
}
}
答案 1 :(得分:0)
提出问题的最佳地点是在他们的网站上,实时聊天。 https://devtools.bunifu.co.ke