Browse Source

Stylecop!

pull/58/head
Steven Kirk 11 years ago
parent
commit
e56252e64f
  1. 4
      Perspex.Controls/TextBox.cs

4
Perspex.Controls/TextBox.cs

@ -112,8 +112,8 @@ namespace Perspex.Controls
protected override void OnTemplateApplied() protected override void OnTemplateApplied()
{ {
this.presenter = this.GetTemplateChild<TextPresenter>("textPresenter"); this.presenter = this.GetTemplateChild<TextPresenter>("textPresenter");
this.presenter.GotFocus += PresenterGotFocus; this.presenter.GotFocus += this.PresenterGotFocus;
this.presenter.LostFocus += PresenterLostFocus; this.presenter.LostFocus += this.PresenterLostFocus;
} }
protected override void OnKeyDown(KeyEventArgs e) protected override void OnKeyDown(KeyEventArgs e)

Loading…
Cancel
Save