簡體   English   中英

檢查datagrid是否具有值

[英]checking if datagrid has values

我正在一個包含WPF的C#項目中。 我想知道,是否可以檢查我的數據網格是否包含某些元素。

例如,我有一個組合框,其itemsSource是一些對象列表。 現在,當用戶從組合框中選擇一個項目並按下按鈕時 點擊之前

在數據網格(在同一窗口中)下方顯示該項目。 點擊后

我想禁止用戶多次選擇同一項目,例如將MessageBox與錯誤消息一起放置。 我該怎么辦?

此窗口:

public partial class AvioWindowAddNEdit : Window
{
    Avio avio;
    public enum Stage { ADD, EDIT};
    Stage stage;

    public AvioWindowAddNEdit(Avio avio, Stage stage = Stage.ADD)
    {
        InitializeComponent();
        this.avio= avio;
        this.stage= stage;

        textboxCode.DataContext = avio;



        comboboxListofFlights.ItemsSource = Aplikacija.Instance.Flights;
        comboboxListofFlights.DataContext = avio;


        datagridListofFlights.ItemsSource = avio.ListofFlights;




        datagridListofFlights.ColumnWidth = new DataGridLength(1, DataGridLengthUnitType.Auto);

        if (stage== Stage.EDIT)
        {
            textboxCode.IsEnabled = false;
        }
    }
}

將所選項目添加到數據網格的按鈕:

private void btnAddFlight_Click(object sender, RoutedEventArgs e)
    {

        avio.ListOfFlights.Add(comboboxListOfFlights.SelectedItem as Flight);

    }

用於加載我的所有數據的Singleton類:

class Aplication
{
    public ObservableCollection<User> Users { get; set; }
    public ObservableCollection<Airport> Airports { get; set; }
    public ObservableCollection<Flight> Flights{ get; set; }
    public ObservableCollection<Avio> Avios { get; set; }

    public string LoggedInUser { get; set; }

    private static Aplication instance = new Aplication();

    public static Aplication Instance
    {
        get
        {
            return instance;
        }
    }

    private Aplication()
    {
        Users= new ObservableCollection<User>();
        Airports = new ObservableCollection<Airport>();
        Flights = new ObservableCollection<Flight>();
        Avios= new ObservableCollection<Avio>();
        FillInData(); //method where I filled in all of these ObservableCollections
    }
}

我的課:

public class Avio : ObservableObject, ICloneable
{
    //observableobject is an object where I implemented INotifyPropertyChanged
    private string code;

    public string Code
    {
        get { return code; }
        set { code= value; OnPropertyChanged("Code"); }
    }

    private ObservableCollection<Flight> listOfFlights;

    public ObservableCollection<Flight> ListOfFlights
    {
        get { return listOfFlights; }
        set { listOfFlights= value; OnPropertyChanged("ListOfFlights"); }
    }


    private bool active;

    public bool Active
    {
        get { return active; }
        set { active= value; OnPropertyChanged("Active"); }
    }

    public Avio()
    {
        active= true;
        ListOfFlights = new ObservableCollection<Flight>();
    }
    public Avio(string code)
    {
        active= true;
        ListOfFlights = new ObservableCollection<Flight>();
        Code= code;
    }
}

您可以將ObservableCollection用作DataGrid的ItemsSource。 這樣,您將始終可以通過代碼輕松訪問數據。 將此教程作為起點進行檢查(它使用ListBox而不是DataGrid,但它很容易適應DataGrid)。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM