Ejemplo n.º 1
0
        public DomRecorder(Sce.Atf.Wpf.Applications.IControlHostService controlHostService)
        {
            m_data = new DataContainer();
            m_controlHostService = controlHostService;

            m_uiDispatcher = Dispatcher.CurrentDispatcher;

            DomNode.DiagnosticAttributeChanged += m_root_AttributeChanged;
            DomNode.DiagnosticChildInserted    += m_root_ChildInserted;
            DomNode.DiagnosticChildRemoved     += m_root_ChildRemoved;
        }
Ejemplo n.º 2
0
        public ResourceListEditor(
            IControlHostService controlHostService,
            ICommandService commandService,
            IContextRegistry contextRegistry)
        {
            m_controlHostService = controlHostService;
            m_commandService = commandService;
            m_contextRegistry = contextRegistry;

            m_contextRegistry.ActiveContextChanged += contextRegistry_ActiveContextChanged;
        }
Ejemplo n.º 3
0
        public ResourceListEditor(
            IControlHostService controlHostService,
            ICommandService commandService,
            IContextRegistry contextRegistry)
        {
            m_controlHostService = controlHostService;
            m_commandService     = commandService;
            m_contextRegistry    = contextRegistry;

            m_contextRegistry.ActiveContextChanged += contextRegistry_ActiveContextChanged;
        }
Ejemplo n.º 4
0
Archivo: Editor.cs Proyecto: Joxx0r/ATF
 public Editor(
     IControlHostService controlHostService,
     IDocumentService documentService,
     IContextRegistry contextRegistry,
     IDocumentRegistry documentRegistry,
     SchemaLoader schemaLoader)
 {
     m_controlHostService = controlHostService;
     m_documentService = documentService;
     m_contextRegistry = contextRegistry;
     m_documentRegistry = documentRegistry;
     m_schemaLoader = schemaLoader;
 }
Ejemplo n.º 5
0
Archivo: Editor.cs Proyecto: zparr/ATF
 public Editor(
     IControlHostService controlHostService,
     IDocumentService documentService,
     IContextRegistry contextRegistry,
     IDocumentRegistry documentRegistry,
     SchemaLoader schemaLoader)
 {
     m_controlHostService = controlHostService;
     m_documentService    = documentService;
     m_contextRegistry    = contextRegistry;
     m_documentRegistry   = documentRegistry;
     m_schemaLoader       = schemaLoader;
 }