PostCodeWindow.xaml.cs 575 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Windows;
  3. using InABox.WPF;
  4. namespace PRSDesktop;
  5. public partial class PostCodeWindow : Window
  6. {
  7. public PostCodeWindow()
  8. {
  9. InitializeComponent();
  10. LocalityTree.Refresh(true,true);
  11. //PostCodePanel.Setup();
  12. //PostCodePanel.Refresh();
  13. }
  14. // private bool _first = true;
  15. //
  16. // protected override void OnActivated(EventArgs e)
  17. // {
  18. // if (_first)
  19. // {
  20. // _first = false;
  21. // this.MoveToCenter();
  22. // }
  23. // base.OnActivated(e);
  24. // }
  25. }