12345678910111213141516171819 |
- using System.Windows.Media;
- using Aitex.Common.Util;
- using MECF.Framework.UI.Core.Applications;
- namespace EfemSimulator
- {
- class UiInstance : IUiInstance
- {
- public string LayoutFile => PathManager.GetCfgDir()+"UILayout.xml";
- public string SystemName => "EFEM Simulator";
- public bool EnableAccountModule => false;
- public ImageSource MainIcon => null;
- public bool MaxSizeShow => true;
- }
- }
|