PageRenderTime 43ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CSVSPackageWPFToolWindow/WPFControl.xaml.cs

#
C# | 35 lines | 30 code | 2 blank | 3 comment | 0 complexity | f6b3b09128d414e9c3f852ba35ec8b9a MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Data;
  8. using System.Windows.Documents;
  9. using System.Windows.Input;
  10. using System.Windows.Media;
  11. using System.Windows.Media.Imaging;
  12. using System.Windows.Navigation;
  13. using System.Windows.Shapes;
  14. namespace Company.VSPackageWPFToolWindow
  15. {
  16. /// <summary>
  17. /// Interaction logic for WPFControl.xaml
  18. /// </summary>
  19. public partial class WPFControl : UserControl
  20. {
  21. public WPFControl()
  22. {
  23. InitializeComponent();
  24. }
  25. public TreeView WPFTreeView
  26. {
  27. get
  28. {
  29. return this.treeView;
  30. }
  31. }
  32. }
  33. }