2

在我的WPF应用程序中,我有一个作为"ComboBox1"的组合框,其中包含来自表"Login"的项目。现在我想在 combobox1 中检索选定的值。例如:表“登录”由记录一、二、三组成。我只是通过数据表将此值添加到组合框1。然后当我想在 combobox1 中打印选定的值时。如何做到这一点..在WPF中。我在下面给出了用于保存带有项目的组合框1 的编码。

        SqlDataAdapter Da = new SqlDataAdapter();
        DataSet Ds = new DataSet();

        Con.Open();
        Cmd = new SqlCommand("select Id from Login", Con);
        Da.SelectCommand = Cmd;
        try 
        {
            Da.Fill(Ds, "User_Id");
            comboBox1.DataContext = Ds.Tables["User_Id"].DefaultView;
            comboBox1.DisplayMemberPath = Ds.Tables["User_Id"].Columns["Id"].ToString();
        }
        catch(Exception ex)
        {
            MessageBox.Show("Table can't be updated");
        }
        Con.Close();

检索所选值的编码如下:

if (comboBox1.SelectedItem != null)
        {
            ComboBoxItem typeItem = (ComboBoxItem)comboBox1.SelectedItem;
            string value = typeItem.Content.ToString();
            textBox5.Text = value;
        }

注意:检查此链接以清楚地了解问题: http: //postimg.org/image/bn27nae65/

4

1 回答 1

1

这是名为“_combo”的组合框的 xaml:

<ComboBox SelectedValue="{Binding SelectedValue}" x:Name="_combo" >
      <ComboBoxItem Content="One"/>
      <ComboBoxItem Content="Two"/>
      <ComboBoxItem Content="Three"/>
</ComboBox>

这是背后的代码:

private string _SelectedItem;
public string SelectedItem
{
    get { return _SelectedItem; }
    set
    {
        _SelectedItem = value;
        OnPropertyChanged("SelectedItem");
        textbox5.text = _combo.Content.ToString();
    }
}

如果这让您感到困惑,请查看数据绑定和“Inotifypropertychanged”。

编辑:这是我输入的简短示例中的所有代码。

基本上,您有一个名为 MainViewModel 的对象,并且您的 XAML 中的所有属性都绑定到视图模型对象属性。下面,TextBox 有一个名为 text 的属性,默认为“ComboBox binding example -- ...”,因为这是视图模型中的 string 属性所绑定的。如果更改框中的文本,则后面代码中的属性值会更改。如果您在后面的代码中编写的某些代码更改了属性,则文本框也会在 XAML 中更新。这是在 WPF 中开发的最佳方式!(或至少大部分时间)。我花了很长时间才理解它是如何工作的,但是一旦我明白了它,开发就变得更快更容易了。最重要的是,您可以完全改变您的 GUI 外观,而执行所有操作的代码保持不变。

这也可以通过向 ComboBox 添加选择更改事件来完成。在这种情况下它实际上更容易,但没有提供 INotifyPropertyChanged 所做的功率量。即因为事件只在一个方向触发,即 ComboBox_Changed -> 事件在代码中触发。INotifyPropertyChanged 在这两个方向上都有效。

这种编码风格被称为 MVVM。虽然它经常让初学者感到困惑,但一旦你把它搞定,它就是一种很棒的应用程序方式。

<Window x:Class="ComboBoxSample.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525" x:Name="view">
<Grid>
    <StackPanel>
        <TextBox x:Name="_textbox" Margin="5,5,5,5" Text="{Binding DataContext.text, RelativeSource={RelativeSource FindAncestor, AncestorType=Window}}" />
        <ComboBox x:Name="_combo"  Margin="5,0,5,5" SelectedItem="{Binding DataContext.SelectedItem, RelativeSource={RelativeSource FindAncestor, AncestorType=Window}}">
            <ComboBoxItem Content="Blue"/>
            <ComboBoxItem Content="Red"/>
            <ComboBoxItem Content="Green"/>
            <ComboBoxItem Content="Black"/>
        </ComboBox>
        <TextBox x:Name="_textbox2" Text="Other method for updating text" Margin="5,5,5,5"/>
        <ComboBox x:Name="_combo2" SelectionChanged="ComboBox_SelectionChanged">
            <ComboBoxItem Content="One"/>
            <ComboBoxItem Content="Two"/>
            <ComboBoxItem Content="Three"/>
        </ComboBox>
    </StackPanel>
</Grid>

这是mainwindow.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace ComboBoxSample
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();
        DataContext = new MainViewModel(_combo);
    }

    private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        string value = _combo2.Items[_combo2.SelectedIndex].ToString().Substring(38);
        _textbox2.Text = value;
    }
}
}

这是所有重要的视图模型:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ComboBoxSample
{
public class MainViewModel : INotifyPropertyChanged
{
    public ComboBox combo;
    public TextBox textbox;

    public MainViewModel(ComboBox _combo)
    {
        combo = _combo;
    }

    private string _text = "ComboBox Binding Example --Changing the combox will change this text!";
    public string text
    {
        get { return _text; }
        set
        {
            _text = value;
            OnPropertyChanged("text");
        }
    }

    private string _SelectedItem;
    public string SelectedItem
    {
        get { return _SelectedItem; }
        set
        {
            _SelectedItem = value;
            OnPropertyChanged("SelectedValue");
            string val = combo.Items[combo.SelectedIndex].ToString().Substring(38);
            text = val;
        }
    }



    public event PropertyChangedEventHandler PropertyChanged;

    protected virtual void OnPropertyChanged(string propertyName)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
    }
}

}

于 2013-05-07T14:52:21.523 回答