private void Window_Loaded(object sender, RoutedEventArgs e)
 {
     //WPS.WPS_Window_Constructor - can be here, but better place it in ctor
     //WPS.WPS_Window_Constructor - to by tady mohlo být, ale lepší je to v konstruktoru
     WPS.WPS_Window_Loaded(this);
 }
 private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
 {
     WPS.WPS_Window_Closing(this);
 }
 public MainWindow()
 {
     InitializeComponent();
     WPS.WPS_Window_Constructor(this);
 }