how to edit a WPF textbox which uses multibinding and string.format?
I have the following code. This displays data in following format H:M:S. I would like to edit these values...and wanted to be notified in viewmodel. How do I achieve that ? Any help would be appreciated. Thanks <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