ReactiveProperty で TextBox に対して Drop 処理が出来ない!?
結論: 引数のEventArgs の値を変更する必要がある場合は、Prismのイベント発火「prism:InvokeCommandAction」を利用する 引数のEventArgs の値を参照しかしない場合は、Reactiveのイベント発火「rpi:EventToReactiveCommand」を利用する Prismは「xmlns:prism="http://prismlibrary.com/" 」 Reactiveは「xmlns:rpi="clr-namespace:Reactive.Bindings.Interactivity;assembly=ReactiveProperty.WPF"」 色々やった事: TextBox に対してファイルをドロップさせファイルパスを表示する。 といういたってシンプルなものを作ろうとしたが、ReactiveProperty で作れない…なぜだ! って事でとりあえず動かないソース:(一部抜粋) MainPage.xaml: <UserControl なんかいろいろ xmlns:prism="http://prismlibrary.com/" xmlns:i="http://schemas.microsoft.com/xaml/behaviors" xmlns:rpi="clr-namespace:Reactive.Bindings.Interactivity;assembly=ReactiveProperty.WPF" prism:ViewModelLocator.AutoWireViewModel="True"> <Grid> <TextBox Text="{Binding FilePath.Value}" AllowDrop="True"> <i:Interaction.Triggers> <i:Even...