DeletedFormWindow.xaml.cs 880 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using InABox.Wpf;
  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 PRSDesktop
  16. {
  17. /// <summary>
  18. /// Interaction logic for DeletedFormWindow.xaml
  19. /// </summary>
  20. public partial class DeletedFormWindow : ThemableWindow
  21. {
  22. public DeletedFormWindow()
  23. {
  24. InitializeComponent();
  25. }
  26. public string FormData {
  27. set
  28. {
  29. Text.Text = value;
  30. }
  31. }
  32. private void Close_Click(object sender, RoutedEventArgs e)
  33. {
  34. Close();
  35. }
  36. }
  37. }