Esempio n. 1
0
 protected abstract void Advice([NotNull] ITextControlWindow textControlWindow, [NotNull] Lifetime lifetime);
Esempio n. 2
0
 protected override void Advice(ITextControlWindow textControlWindow, Lifetime lifetime)
 {
     textControlWindow.MouseUp.Advise(lifetime, OnClick);
     textControlWindow.Keyboard.Advise(lifetime, OnKeyPress);
 }