示例#1
0
 public XPathQueryPad()
 {
     xpathQueryControl = new XPathQueryControl();
     SD.Workbench.ActiveViewContentChanged += ActiveViewContentChanged;
     Properties properties = PropertyService.NestedProperties(XPathQueryControlProperties);
     xpathQueryControl.SetMemento(properties);
     instance = this;
 }
示例#2
0
 public XPathQueryPad()
 {
     xPathQueryControl = new XPathQueryControl();
     WorkbenchSingleton.Workbench.ActiveViewContentChanged += ActiveViewContentChanged;
     Properties properties = PropertyService.Get(XPathQueryControlProperties, new Properties());
     xPathQueryControl.SetMemento(properties);
     instance = this;
 }
示例#3
0
        public XPathQueryPad()
        {
            xPathQueryControl = new XPathQueryControl();
            WorkbenchSingleton.Workbench.ActiveViewContentChanged += ActiveViewContentChanged;
            Properties properties = PropertyService.Get(XPathQueryControlProperties, new Properties());

            xPathQueryControl.SetMemento(properties);
            instance = this;
        }
示例#4
0
        public override void Run()
        {
            XPathQueryPad pad = XPathQueryPad.Instance;

            if (pad != null)
            {
                pad.RemoveXPathHighlighting();
            }
        }
示例#5
0
        public XPathQueryPad()
        {
            xpathQueryControl = new XPathQueryControl();
            SD.Workbench.ActiveViewContentChanged += ActiveViewContentChanged;
            Properties properties = PropertyService.NestedProperties(XPathQueryControlProperties);

            xpathQueryControl.SetMemento(properties);
            instance = this;
        }