SeconProjectPage.xaml.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using CollaborativePlatformMain.Form.MessageSubPage.Project;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Controls;
  9. using System.Windows.Data;
  10. using System.Windows.Documents;
  11. using System.Windows.Input;
  12. using System.Windows.Media;
  13. using System.Windows.Media.Imaging;
  14. using System.Windows.Shapes;
  15. namespace CollaborativePlatformMain.Form.MessageSubPage
  16. {
  17. /// <summary>
  18. /// SeconProjectPage.xaml 的交互逻辑
  19. /// </summary>
  20. public partial class SeconProjectPage : Page
  21. {
  22. public SeconProjectPage()
  23. {
  24. InitializeComponent();
  25. }
  26. private void Window_Loaded(object sender, RoutedEventArgs e)
  27. {
  28. threeNewProject.Navigate(new NewProjrctPage());
  29. }
  30. private void tv_projectLeftButtonUp(object sender, MouseButtonEventArgs e)
  31. {
  32. }
  33. private void bt_addPro(object sender, RoutedEventArgs e)
  34. {
  35. }
  36. }
  37. }