wp8 入门到精通 高仿微信发信息 键盘不消失

时间:2014-07-16 15:34:13   收藏:0   阅读:467

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0">
<StackPanel Orientation="Vertical">
<TextBlock Text="Hides soft keyboard on enter:" />
<TextBox x:Name="textBox" />

<TextBlock Text="Normal text box:" />
<TextBox />
</StackPanel>
</Grid>

 

public MainPage()
{
InitializeComponent();

this.textBox.KeyUp += new KeyEventHandler(textBox_KeyUp);
}

void textBox_KeyUp(object sender, KeyEventArgs e)
{
// if the enter key is pressed
if (e.Key == Key.Enter)
{
textBox.Focus();
}
}

键盘不消失

wp8 入门到精通 高仿微信发信息 键盘不消失,布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!