简体   繁体   English

WPF DataGrid-绑定到“单元”的集合

[英]WPF DataGrid - Bind to collection of 'cells'

I'm trying to figure out how to bind the datasource of a DataGrid to an ObservableCollection of 'cells'. 我试图弄清楚如何将DataGrid的数据源绑定到“单元”的ObservableCollection。 In particular, I have an ObservableCollection that holds instances of the following class: 特别是,我有一个ObservableCollection,其中包含以下类的实例:

public class Option : INotifyPropertyChanged
{
    public Option()
    {
    }

    // +-+- Static Information +-+-
    public double spread = 0;        
    public double strike = 0;        
    public int daysToExpiry = 0;
    public int put_call; // 0 = Call, 1 = Put

    // Ticker References
    public string fullTicker = "";
    public string underlyingTicker = "";

    //+-+-Properties used in Event Handlers+-+-//
    private double price = 0;
    public double Price
    {
        get { return price; }
        set
        {
            price = value; 
            NotifyPropertyChanged("Price");
        }
    }

    //+-+-+-+- Propoerty Changed Event & Hander +-+-+-+-+-//
    public event PropertyChangedEventHandler PropertyChanged;

    private void NotifyPropertyChanged(string info)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(info));
        }
    }
}

On my DataGrid, I want to display these classes (I'm using TemplateColumns the Price and the 'strike' variables in each cell) such that they are grouped by "underlyingTicker" [which is a 4 character string] and by "spread" [which takes on 1 of 6 possible values defined in the background coding]. 在我的DataGrid上,我想显示这些类(我在每个单元格中使用PriceColumn和'strike'变量使用TemplateColumns),以便将它们按“ underlyingTicker”(这是4个字符串)和“ spread”分组[采用背景编码中定义的6个可能值中的1个]。

Currently, when I bind the DataGrid's DataContext to the ObservableCollection, it shows each 'Option' as a row - and I can't figure out how to specify what to group the pairs on... 当前,当我将DataGrid的DataContext绑定到ObservableCollection时,它会将每个“选项”显示为一行-而且我不知道如何指定对配对的对象...

This is what my datagrid looks like now: 这是我的数据网格现在的样子: 在此处输入图片说明

Thanks a lot - kcross! 非常感谢-kcross!

Like Dtex I do not entirely understand what you want to do. 像Dtex一样,我也不完全了解您想要做什么。 But I tried to make a simplification that hopefully will get you started. 但是我尝试进行简化,希望可以帮助您入门。 You have to pass the DataGrid an IEnumerable (preferably an ObserrvableCollection ) of objects. 您必须将对象的IEnumerable (最好是ObserrvableCollection )传递给DataGrid The individual objects will translate to rows, the properties of these objects will translate to the column headers. 单个对象将转换为行,这些对象的属性将转换为列标题。

So if you want the column headers to represent multiples of the standard deviation (right?) you will have to create an object that has these multiples as properties. 因此,如果希望列标题表示标准偏差的倍数(对吗?),则必须创建一个将这些倍数作为属性的对象。 The resulting cells will contain the Option classes. 结果单元格将包含Option类。 To represent these you will have to define a DataTemplate or override the ToString() function. 为了表示这些,您将必须定义一个DataTemplate或重写ToString()函数。 I think you did the former judging from your example. 我认为您是根据您的榜样来判断的。

The code behind: 后面的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.ComponentModel;
using System.Collections.ObjectModel;
namespace DataGridSpike
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        private List<Option> _unsortedOptions;
        private ObservableCollection<OptionRow> _groupedOptions;

        public ObservableCollection<OptionRow> GroupedOptions
        {
            get { return _groupedOptions; }
            set { _groupedOptions = value; }
        }

        public MainWindow()
        {
            var rnd=new Random();
            InitializeComponent();

            //Generate some random data
            _unsortedOptions=new List<Option>();
            for(int element=0;element<50;element++)
            {
                double column=rnd.Next(-2,3);
                int row=rnd.Next(0,9);

                _unsortedOptions.Add(new Option { ColumnDefiningValue = column, RowDefiningValue = row });
            }

            //Prepare the data for the DataGrid
            //group and sort
            var rows = from option in _unsortedOptions
                       orderby option.ColumnDefiningValue
                       group option by option.RowDefiningValue into optionRow
                       orderby optionRow.Key ascending
                       select optionRow;

            //convert to ObservableCollection
            _groupedOptions = new ObservableCollection<OptionRow>();
            foreach (var groupedOptionRow in rows)
            {
                var groupedRow = new OptionRow(groupedOptionRow);
                _groupedOptions.Add(groupedRow);
            }

            //bind the ObservableCollection to the DataGrid
            DataContext = GroupedOptions;
        }
    }

    public class OptionRow
    {
        private List<Option> _options;

        public OptionRow(IEnumerable<Option> options)
        {
            _options = options.ToList();
        }

        public Option Minus2
        {
            get
            {
                return (from option in _options
                       where option.ColumnDefiningValue == -2
                       select option).FirstOrDefault();
            }
        }
        public Option Minus1
        {
            get
            {
                return (from option in _options
                        where option.ColumnDefiningValue == -1
                        select option).FirstOrDefault();
            }
        }
        public Option Zero
        {
            get
            {
                return (from option in _options
                        where option.ColumnDefiningValue == 0
                        select option).FirstOrDefault();
            }
        }
        public Option Plus1
        {
            get
            {
                return (from option in _options
                        where option.ColumnDefiningValue == 1
                        select option).FirstOrDefault();
            }
        }
        public Option Plus2
        {
            get
            {
                return (from option in _options
                        where option.ColumnDefiningValue == 2
                        select option).FirstOrDefault();
            }
        }
    }

    public class Option:INotifyPropertyChanged
    {

        public override string ToString()
        {
            return string.Format("{0}-{1}", RowDefiningValue.ToString(),ColumnDefiningValue.ToString());
        }

        private double _columnDefiningValue;
        public double ColumnDefiningValue
        {
            get{return _columnDefiningValue;}
            set{_columnDefiningValue = value;
                OnPropertyChanged("ColumndDefiningValue");
            }
        }

        private int _rowDefiningValue;
        public int RowDefiningValue
        {
            get{return _rowDefiningValue;}
            set{_rowDefiningValue = value;
                OnPropertyChanged("RowDefiningValue");
            }
        }

        private void OnPropertyChanged(string propertyName)
        {
            if (PropertyChanged!=null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
            }
        }

        public event PropertyChangedEventHandler PropertyChanged;
    }
}

The XAML: XAML:

<Window x:Class="DataGridSpike.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">
    <Grid>
        <DataGrid ItemsSource="{Binding}"/>
    </Grid>
</Window>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM