Как добавить значение в текстовое поле при нажатии кнопки добавить элемент значение выбирается из выпадающего списка
private List<ListItem> _tyreList; public List<ListItem> TyreList; { get { return _tyre; } set { _tyre= value; RaisePropertyChanged(); } } <ComboBox Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="1" SelectedValuePath="Value" DisplayMemberPath="Name" ItemsSource="{Binding ElementName=LayoutRoot, Path=DataContext.TyreList}" SelectedItem="{Binding TyreList}"/> <Button Command="{Binding AddTyreCommand}" Grid.Row="3" Grid.Column="4" Grid.ColumnSpan="2" Content="Add Tyre" Width="150" Height="25" HorizontalAlignment="Left" /> <TextBox Name="tbMultiLine" TextWrapping="Wrap" AcceptsReturn="True" VerticalScrollBarVisibility="Visible" Text="{Binding what binding to set here => TyreList}" />
Что я уже пробовал:
private RelayCommand _addTyreCommand; public RelayCommand AddTyreCommand => _addTyreCommand?? (_addTyreCommand= new RelayCommand(AddTyres , CanAddTyres)); private void AddTyres () { //something here } private bool CanAddTyres() => true;//to add tyres