WebTemplateEditor.xaml.cs 376 B

123456789101112131415161718
  1. using InABox.Wpf;
  2. using System.Windows;
  3. namespace PRSServer.Forms
  4. {
  5. /// <summary>
  6. /// Interaction logic for WebTemplateEditor.xaml
  7. /// </summary>
  8. public partial class WebTemplateEditor : ThemableWindow
  9. {
  10. public WebTemplateEditor()
  11. {
  12. InitializeComponent();
  13. WebTemplates.Refresh(true, true);
  14. }
  15. }
  16. }