当按下appbar中的按钮时,我想打开一个带文本框和按钮的矩形框菜单。让我再解释一下我的问题。
我想在我的应用中使用搜索选项。所以,我的应用栏中有搜索图标。当用户想要搜索时,他会向应用栏滑动并按下搜索图标。
按下搜索图标时,带有矩形框的菜单包含文本框和文本框。按钮,应该打开。
我不知道如何在C#和XAML中编写代码。请帮我。每个答案都将不胜感激。
答案 0 :(得分:1)
您可以使用WP toolkit中的CustomMessageBox
并在其中插入Textbox
TextBox txtBox = new TextBox();
txtBox.Width = 460;
txtBox.Text = selectedChild.Name;
txtBox.HorizontalAlignment = HorizontalAlignment.Center;
txtBox.MaxLength = 14;
CustomMessageBox messageBox = new CustomMessageBox();
messageBox.Caption = "hello";
messageBox.Content = txtBox;
messageBox.LeftButtonContent = "OK";
messageBox.RightButtonContent = "Cancel";
messageBox.IsFullScreen = false;
messageBox.Dismissed += MessageBoxDismissed;
messageBox.Show();
这是回调
private void MessageBoxDismissed(object sender, DismissedEventArgs e)
{
CustomMessageBox messageBox = sender as CustomMessageBox;
if (messageBox != null && e.Result == CustomMessageBoxResult.LeftButton)
{
TextBox tb = messageBox.Content as TextBox;
if (tb != null && !string.IsNullOrEmpty(tb.Text.Trim()))
{
//do your stuff
}
}
else
{
}
}
答案 1 :(得分:0)
这个问题的完美答案是使用NuGet。您可以从here
下载您可以通过单击以下链接在CustomMessageBox中初始化文本框的代码: display two textbox in customMessageBox?