コード例 #1
0
ファイル: TextBoxHint.cs プロジェクト: cardsurf/WindNote
 private void AddTextChangedHandler()
 {
     TextBoxHintTextChangedHandler handler = new TextBoxHintTextChangedHandler(this);
     this.TextChanged += handler.ShowHintTextWhenEmpty;
     this.TextChanged += this.RemoveTildeKeyChars;
 }
コード例 #2
0
ファイル: TextBoxHint.cs プロジェクト: cardsurf/WindNote
 private void AddLoadedHandler()
 {
     TextBoxHintTextChangedHandler handler = new TextBoxHintTextChangedHandler(this);
     this.Loaded += handler.ShowHintTextWhenEmpty;
 }