3
私は以下のコードを持っています。マルチバインディングとstring.formatを使用するWPFテキストボックスの編集方法は?
これは、H:M:Sの形式でデータを表示します。これらの値を編集したいと思います...そして、ビューモデルで通知されたかったのです。
どのように達成できますか?
ご協力いただければ幸いです。結合のおかげ
<TextBox DataContext="{Binding UpdateSourceTrigger=PropertyChanged}" >
<TextBox.Text>
<MultiBinding StringFormat=" {0}:{1}:{2}">
<Binding Path="ValueH" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged" />
<Binding Path="ValueM" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged" />
<Binding Path="ValueS" Mode="TwoWay" UpdateSourceTrigger="PropertyChanged" />
</MultiBinding>
</TextBox.Text>
</TextBox>