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