WPF Datagrid:拆分单元格值并将其转换为不同的对象

时间:2015-06-17 12:42:37

标签: c# wpf datagrid

我正在尝试创建一个Calendar类型的DataGrid。在这里,我不知道我的列是什么,所以我必须使用AutoGenerateColumns = true。由于我的列是从数据库返回的,我不认为我可以将它与Collection绑定并在此定义我的数据列(如果我错了,请纠正我)。

我做了一些Sample项目来解释。

WPF代码:

<Window x:Class="Test.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="467.241" Width="892.586">

<Window.Resources>
    <DataTemplate x:Key="GridTemplate">
    </DataTemplate>

</Window.Resources>

<Grid>
    <DataGrid AutoGeneratingColumn="dtMainGrid_AutoGeneratingColumn" ItemsSource="{Binding}" Name="dtMainGrid" Margin="10,10,9.667,9.667" RenderTransformOrigin="-3.28,-4.862"/>

</Grid>
</Window>

C#代码:

    using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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 Test
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();

            DataTable table = new DataTable();
            DateTime start = new DateTime(2015,1,1);
            for(int i = 0;i<100;i++)
            {
                DataColumn column = new DataColumn(start.AddDays(i).ToShortDateString());
                table.Columns.Add(column);
            }

            for (int j = 0; j < 20; j++)
            {
                DataRow row = table.Rows.Add();

                for (int i = 0; i < 100; i++)
                {
                    row[i] = "8:30;9:30;10.30";
                }
            }

            dtMainGrid.AutoGenerateColumns = true;
            dtMainGrid.DataContext = table;
        }

        private void dtMainGrid_AutoGeneratingColumn(object sender, DataGridAutoGeneratingColumnEventArgs e)
        {

        }
    }


    public class TestItem
    {
        public string Text;

    }

    }

它会创建以下UI:

My Sample Window Layout

现在,我需要这样做。我需要用分号分割单元格值,并用红色圆圈形状替换它。嗯,显然,这是一个示例,因此您在每个单元格中看到相同的值,但在实时数据中,您将在不同的单元格中看到不同的数据。您甚至可能看不到特定单元格的任何数据,因此它无论如何都不是静态的。

因为我将DataContext与DataTable绑定在一起。我不知道怎么能这样做。我无法得到一个起点。任何指针都会很棒。

0 个答案:

没有答案