码迷,mamicode.com
首页 > 微信 > 详细

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

时间:2014-07-16 15:34:13      阅读:467      评论:0      收藏:0      [点我收藏+]

标签:des   blog   http   io   re   c   

<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

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

标签:des   blog   http   io   re   c   

原文地址:http://www.cnblogs.com/luquanmingren/p/3848070.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!