<TextBox x:Name="V2" Grid.Row="2" Grid.Column="8" Grid.ColumnSpan="3" Text="{Binding airPlane}".../>
In the above code, if I want to add more things in the "Text" property besides binding the airplane data, e.g. to add a unit called "Pounds", how to modify the code? Thanks!
TextBox? What is supposed to happen when someone entersTextinto yourBox, what shouldairplaneandpoundsbe? But, since you are talking aboutUnits, maybe this is enough for you:{Binding airplane, StringFormat={}{0}Pounds}