12345678910111213141516171819202122232425 |
- using System.Windows.Media;
- using Aitex.Common.Util;
- using MECF.Framework.UI.Core.Applications;
- namespace EfemDualSimulator.Instances
- {
- class UiInstance : IUiInstance
- {
- public string LayoutFile => PathManager.GetCfgDir() + "UILayout.xml";
- public string SystemName => "Simulator";
- public bool EnableAccountModule => false;
- public ImageSource MainIcon { get; set; }
- public bool MaxSizeShow { get; } = true;
- public UiInstance()
- {
- //MainIcon = new BitmapImage(new Uri("pack://application:,,,/StripRT;component/Resources/defaultRT.ico"));
- }
- }
- }
|