EmailTemplateManagerWindow.cs 368 B

12345678910111213141516
  1. using InABox.Core;
  2. using InABox.Wpf;
  3. namespace PRSDesktop
  4. {
  5. public class EmailTemplateManagerWindow : ThemableWindow
  6. {
  7. public EmailTemplateManagerWindow(DataModel model)
  8. {
  9. var grid = new DataModelTemplateGrid();
  10. grid.Model = model;
  11. grid.Refresh(true, true);
  12. Content = grid;
  13. }
  14. }
  15. }