private void _ADD_EMPLOY_OnClick(object sender, RoutedEventArgs e) { var wind = new AddEmploy(_staffGuid, Guid.Empty) { Owner = Window.GetWindow(this) }; wind.ShowDialog(); Refresh(_staffGuid, _fromDate, _toDate); }
private void _EMPLOY_LIST_OnMouseDoubleClick(object sender, MouseButtonEventArgs e) { if (_isReadOnly) { return; } var wind = new AddEmploy(_staffGuid, SelectedEmployGuid) { Owner = Window.GetWindow(this) }; wind.ShowDialog(); Refresh(_staffGuid, _fromDate, _toDate); }
private void _EMPLOY_LIST_OnMouseDoubleClick(object sender, MouseButtonEventArgs e) { if (_isReadOnly) return; var wind = new AddEmploy(_staffGuid, SelectedEmployGuid) { Owner = Window.GetWindow(this) }; wind.ShowDialog(); Refresh(_staffGuid, _fromDate, _toDate); }