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

<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 入门到精通 高仿微信发信息 键盘不消失

上一篇:给微信图文消息添加修饰方框更简洁大方


下一篇:在sae上面运行微信第三方平台微擎,带视频录像