gpt4 book ai didi

c# - 绑定(bind) WPF 组合框并将其值显示到 TextBox

转载 作者:太空狗 更新时间:2023-10-29 23:11:36 25 4
gpt4 key购买 nike

你好 friend 我想显示从数据库到组合框的数据,数据库表有 id、investPlan、amount。现在我想在组合框中显示“investPln”列,当用户选择任何计划时,相应的金额将显示在文本框控件中。我能够在 comboBox 中显示“invetsPlan”行,但不知道如何做其他事情。帮帮我!!

XAML 部分

<ComboBox Height="23" Margin="70,72,88,0" Name="comboBox1" VerticalAlignment="Top" DropDownClosed="comboBox1_DropDownClosed" 
ItemsSource="{Binding}" IsSynchronizedWithCurrentItem="True" SelectedValue="{Binding Path=id}" DisplayMemberPath="fullName" SelectedValuePath="id"/>

代码隐藏部分

private void Window_Loaded(object sender, RoutedEventArgs e)
{
DataSet1TableAdapters.membersTableAdapter ta = new ComboBoxDB.DataSet1TableAdapters.membersTableAdapter();
comboBox1.ItemsSource = ta.GetData();
}

最佳答案

你快到了!

<TextBox Text="{Binding ElementName=comboBox1, Path=SelectedItem.amount}" />

给你:)

关于c# - 绑定(bind) WPF 组合框并将其值显示到 TextBox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2310522/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com