我需要以下行为:当我开始在窗口中输入时,会出现一个小文本框,其中已经输入了第一个字母,然后在我输入文本并按 Enter 后,文本框应该消失,直到我再次在该窗口中输入。问题是当我设置Popup1.IsOpen = false
文本框时仍然保留在窗口中。
<Window x:Class="Beta.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525" KeyDown="Window_KeyDown_1">
<Grid>
<Popup Name="Popup1" IsEnabled="True" IsOpen="False" VerticalOffset="-200" HorizontalOffset="50">
<TextBox Name="tbx" Width="50" KeyDown="tbx_KeyDown" />
</Popup>
</Grid>
</Window>
string temp;
private void Window_KeyDown_1(object sender, KeyEventArgs e)
{
Popup1.IsOpen = true;
tbx.Focus();
}
private void tbx_KeyDown(object sender, KeyEventArgs e)
{
if (e.Key == Key.Enter)
{
Popup1.IsOpen = false;
temp = tbx.Text;
tbx.Text = null;
}
}