| 1234567891011121314151617181920212223242526272829 | 
							- using System;
 
- using System.Windows.Media;
 
- using System.Windows.Media.Imaging;
 
- using Aitex.Common.Util;
 
- using Aitex.Core.WCF;
 
- using CyberX8_Simulator.Views;
 
- using MECF.Framework.UI.Core.Applications;
 
- using CyberX8_Simulator.Devices;
 
- namespace CyberX8_Simulator.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:,,,/CyberX8_Simulator;component/Resources/simulator.ico"));
 
-         }
 
-     }
 
- }
 
 
  |