Esempio n. 1
0
 public DefaultTabCommands(
     ICommandService commandService,
     IControlHostService controlHostService,
     IControlRegistry controlRegistry)
 {
     m_commandService = commandService;
     m_controlHostService = controlHostService;
     m_controlRegistry = controlRegistry;
 }
Esempio n. 2
0
 public DefaultTabCommands(
     ICommandService commandService,
     IControlHostService controlHostService,
     IControlRegistry controlRegistry)
 {
     CommandService     = commandService;
     ControlHostService = controlHostService;
     ControlRegistry    = controlRegistry;
 }
Esempio n. 3
0
 public PerformanceMonitor(IControlRegistry controlRegistry, IControlHostService controlHostService)
 {
     m_controlRegistry = controlRegistry;
     m_controlHostService = controlHostService;
     m_controlInfo = new ControlInfo(
         "Performance Monitor".Localize(),
         "Displays performance data on the currently active Control".Localize(),
         StandardControlGroup.Floating);
     m_controlInfo.VisibleByDefault = false;
 }
Esempio n. 4
0
 public PerformanceMonitor(IControlRegistry controlRegistry, IControlHostService controlHostService)
 {
     m_controlRegistry    = controlRegistry;
     m_controlHostService = controlHostService;
     m_controlInfo        = new ControlInfo(
         "Performance Monitor".Localize(),
         "Displays performance data on the currently active Control".Localize(),
         StandardControlGroup.Floating);
     m_controlInfo.VisibleByDefault = false;
 }
Esempio n. 5
0
 public PerformanceMonitor(IControlRegistry controlRegistry, IControlHostService controlHostService)
 {
     m_controlRegistry = controlRegistry;
     m_controlHostService = controlHostService;
     m_controlInfo = new ControlInfo(
         "Performance Monitor", //Is the ID in the layout. We'll localize DisplayName instead.
         "Displays performance data on the currently active Control".Localize(),
         StandardControlGroup.Floating)
     {
         DisplayName = "Performance Monitor".Localize()
     };
     m_controlInfo.VisibleByDefault = false;
 }
Esempio n. 6
0
 public PerformanceMonitor(IControlRegistry controlRegistry, IControlHostService controlHostService)
 {
     m_controlRegistry    = controlRegistry;
     m_controlHostService = controlHostService;
     m_controlInfo        = new ControlInfo(
         "Performance Monitor", //Is the ID in the layout. We'll localize DisplayName instead.
         "Displays performance data on the currently active Control".Localize(),
         StandardControlGroup.Floating)
     {
         DisplayName = "Performance Monitor".Localize()
     };
     m_controlInfo.VisibleByDefault = false;
 }