UiInstance.cs 580 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Windows.Media;
  3. using Aitex.Common.Util;
  4. using Aitex.Core.WCF;
  5. using VirgoSimulator.Views;
  6. using MECF.Framework.UI.Core.Applications;
  7. namespace VirgoSimulator.Instances
  8. {
  9. class UiInstance : IUiInstance
  10. {
  11. public string LayoutFile => PathManager.GetCfgDir() + "UILayout.xml";
  12. public string SystemName => "Simulator";
  13. public bool EnableAccountModule => false;
  14. public ImageSource MainIcon { get; set; }
  15. public bool MaxSizeShow { get; } = true;
  16. public UiInstance()
  17. {
  18. }
  19. }
  20. }