LoginSignup
2
4

More than 5 years have passed since last update.

C# > ReactiveProperty > テキスト入力途中でもイベント検知

Last updated at Posted at 2019-04-16

ReactiveProperty オーバービュー - かずきのBlog@hatena

View

<TextBox Text="{Binding Input.Value, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />

ViewModel

public ReactiveProperty<string> Input { get; set; } = new ReactiveProperty<string>();
Input.Subscribe(_ => Input_Changed());


private void Input_Changed()
{

}

2
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
4