Notes
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6using System.Windows;
7using System.Windows.Controls;
8using System.Windows.Data;
9using System.Windows.Documents;
10using System.Windows.Input;
11using System.Windows.Media;
12using System.Windows.Media.Imaging;
13using System.Windows.Navigation;
14using System.Windows.Shapes;
15
16namespace View
17{
18/// <summary>
19/// Interaction logic for MainWindow.xaml
20/// </summary>
21public partial class MainWindow : Window
22{
23public MainWindow()
24{
25InitializeComponent();
26}
27
28private void TextBox_TouchEnter(object sender, TouchEventArgs e)
29{
30
31}
32}
33}
34