UiInstance.cs 445 B

12345678910111213141516171819
  1. using System.Windows.Media;
  2. using Aitex.Common.Util;
  3. using MECF.Framework.UI.Core.Applications;
  4. namespace EfemSimulator
  5. {
  6. class UiInstance : IUiInstance
  7. {
  8. public string LayoutFile => PathManager.GetCfgDir()+"UILayout.xml";
  9. public string SystemName => "EFEM Simulator";
  10. public bool EnableAccountModule => false;
  11. public ImageSource MainIcon => null;
  12. public bool MaxSizeShow => true;
  13. }
  14. }