예제 #1
0
 public ElementSelector(ElementSelector selector)
 {
     this.type  = selector.type;
     this.value = selector.value;
     if (selector.ChildSelector == null)
     {
         return;
     }
     this.childSelector = new ElementSelector(selector.ChildSelector);
 }
예제 #2
0
 public ElementSelector(ElementSelectorTypes type, string value)
 {
     this.type  = type;
     this.value = value;
 }
예제 #3
0
 public ElementSelector(string elementState)
 {
     this.value = elementState;
     this.type  = ElementSelectorTypes.VisualStateSelector;
 }