MainWindow.xaml.cs 381 B

1234567891011121314151617181920
  1. using System.Windows;
  2. using System.Windows.Controls;
  3. using System.Windows.Input;
  4. using System.Collections;
  5. namespace Egametang
  6. {
  7. /// <summary>
  8. /// MainWindow.xaml 的交互逻辑
  9. /// </summary>
  10. public partial class MainWindow : Window
  11. {
  12. private Hashtable treeViewNodes = new Hashtable();
  13. public MainWindow()
  14. {
  15. InitializeComponent();
  16. }
  17. }
  18. }