Ejemplo n.º 1
0
 void IMessageBubbleValidator.Initialize(UIElement targetElement, IMessageBubbleHelper helper)
 {
     this.helper = helper;
 }
Ejemplo n.º 2
0
 public void Initialize(UIElement targetElement, IMessageBubbleHelper helper)
 {
     this.listBox = (ListBox)targetElement;
     this.listBox.SelectionChanged += new SelectionChangedEventHandler(this.ProjectItemTypeValidator_SelectionChanged);
     this.helper = helper;
 }
Ejemplo n.º 3
0
 public void Initialize(UIElement targetElement, IMessageBubbleHelper helper)
 {
     this.targetElement              = (TextBox)targetElement;
     this.targetElement.TextChanged += new TextChangedEventHandler(this.ProjectNameValidator_TextChanged);
     this.helper = helper;
 }