WPF开发经验-实现自带触控键盘的TextBox( 三 )

MainWindow界面代码:
<Window x:Class="WpfApp1.MainWindow"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:d="http://schemas.microsoft.com/expression/blend/2008"xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"mc:Ignorable="d"Title="MainWindow" Height="800" Width="1200"><StackPanel><TextBox Text="Pop up the keyboard after touching" Width="400" HorizontalAlignment="Left"FontSize="18" Margin="20,20"Style="{StaticResource TouchTextBox}"/></StackPanel></Window>设置TextBox的Style为TouchTextBox,则该TextBox实现了自带触控键盘的效果 。
以上 。

推荐阅读