4

我有一个具有多个属性的自定义对象,其中一个返回一个列表。这是对象的代码:

public class SearchResult
{
    private int eventId;
    private String eventTitle;
    private int startDate;
    private List<String> tags;

    // Properties
    public int EventId { get { return this.eventId; } }

    public String EventTitle { get { return this.eventTitle; } }

    public int StartDate { get { return this.startDate; } }

    public List<String> Tags { get { return this.tags; } }

    public SearchResult(int eventId, String eventTitle, int startDate, List<String> tags)
    {
        // Constructor code
    }

    public List<String> GetTags()
    {
        return this.tags;
    }
}

我还有一个DataGridViewComboBoxColumn我想绑定到Tags属性的东西。基本上,每个SearchResult对象都将显示在自己的行中,我希望每个对象的List<String>inTags属性都显示在ComboBox该行的单元格中。这是我到目前为止的代码DataGridView

BindingList<SearchResult> results = new BindingList<SearchResult>();
results.Add(new SearchResult(1, "This is a title", 2012, new List<String> { "Tag1", "Tag with a long name1" }));
results.Add(new SearchResult(2, "The quick brown fox", 2012, new List<String> { "Stack", "Overflow" }));
results.Add(new SearchResult(3, "In this tutorial, you create a class that is the type for each object in the object collection. ", 2012, new List<String> { "NYSE", "FTSE" }));
results.Add(new SearchResult(4, "another long piece of title text", -999, new List<String> { "Rabbits", "Chickens" }));

MyDataGrid.AutoGenerateColumns = false;
MyDataGrid.AllowUserToAddRows = false;
MyDataGrid.AllowUserToDeleteRows = false;
MyDataGrid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.None;
MyDataGrid.BackgroundColor = System.Drawing.SystemColors.Control;
MyDataGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
MyDataGrid.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToDisplayedHeaders;
MyDataGrid.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells;
MyDataGrid.DefaultCellStyle.WrapMode = DataGridViewTriState.True;

DataGridViewTextBoxColumn eventIdColumn = new DataGridViewTextBoxColumn();
eventIdColumn.DataPropertyName = "EventId";
eventIdColumn.HeaderText = "Event ID";
eventIdColumn.ReadOnly = true;
eventIdColumn.Width = 84;

DataGridViewTextBoxColumn eventTitleColumn = new DataGridViewTextBoxColumn();
eventTitleColumn.DataPropertyName = "EventTitle";
eventTitleColumn.HeaderText = "Event Title";
eventTitleColumn.ReadOnly = true;
eventTitleColumn.Width = 368;

DataGridViewTextBoxColumn startDateColumn = new DataGridViewTextBoxColumn();
startDateColumn.DataPropertyName = "StartDate";
startDateColumn.HeaderText = "Start Date";
startDateColumn.ReadOnly = true;
startDateColumn.Width = 130;

//I think I need to insert the code for the tags column here, but I'm not sure

MyDataGrid.Columns.Add(eventIdColumn);
MyDataGrid.Columns.Add(eventTitleColumn);
MyDataGrid.Columns.Add(startDateColumn);
//MyDataGrid.Columns.Add(tagsColumn);

MyDataGrid.DataSource = results;

我从网上找到的教程中得出了这段代码,它运行良好。

我一直在尝试将 的Tags属性绑定SearchResult到 a DataGridViewComboBoxColumn,但我不确定如何。我一直在看这个问题,它提供了这个代码:

column.DataPropertyName = "Foo";
column.DisplayMember = "SomeNameField"; 
column.ValueMember = "Bar"; // must do this, empty string causes it to be 
                            // of type string, basically the display value
                            // probably a bug in .NET
column.DataSource = from foo in Foo select foo;
grid.DataSource = data;

我遇到麻烦的原因是我不理解的链接问题的一些细微差别。

  1. 根据文档和链接的问题,DisplayMember应该链接到“包含实例描述”的属性,但是由于SearchResult对象是动态添加的并且没有与之关联的任何描述,我应该将其留空吗?
  2. ValueMember给了我类似的问题,因为即使在阅读了它的文档之后我也不确定该放什么。
  3. 在链接的问题中,接受的答案使用 LINQ 一次绑定整个数据网格。我应该这样做吗?我不确定如何根据我的情况修改该代码,但我认为它会是这样的。

tagsColumn.DataPropertyName = "Tags";
tagsColumn.DisplayMember = ""; // I'm unsure of what to put here
tagsColumn.ValueMember = ""; // Once again, I don't know what to set this to

我还认为我应该有一个设置DataSource列的行,例如

tagsColumn.DataSource = <some LINQ query, perhaps?>

但我不知道,因为我能找到的唯一最相关的 C# 源代码就是那个问题。

更新:

我确实找到了第二个问题,该问题建议使用与此类似的代码进行数据绑定:

// reference the combobox column
DataGridViewComboBoxColumn cboBoxColumn = (DataGridViewComboBoxColumn)dataGridView1.Columns[0];
cboBoxColumn.DataSource = Choice.GetChoices();
cboBoxColumn.DisplayMember = "Name";  // the Name property in Choice class
cboBoxColumn.ValueMember = "Value";  // ditto for the Value property

基于此,我 a) 添加了该GetTags()方法SearchResult并将此代码添加到我的DataGridView初始化代码中:

        DataGridViewComboBoxColumn tagsColumn = new DataGridViewComboBoxColumn();
        tagsColumn.DataSource = SearchResult.GetTags(); // ERROR 
        tagsColumn.DisplayMember = ""; // Still not sure
        tagsColumn.ValueMember = ""; // ??

但是,当我尝试运行它时,Visual Studio 在第二行给我一个错误:

An object reference is required for the non-static field, method, or property 'SearchResult.GetTags()'

更新 2:

我仍在寻找这个没有成功。我不明白如何使用其他属性(例如EventId)我可以简单地将数据属性名称声明为EventId,它将显示在表中,但我不能对ComboBox列执行此操作。

Tags由于对象是在一个单独的类中实例化并放入一个列表中,因此我应该遍历整个对象数组(其中可能有数百个)来绑定属性对我来说似乎没有意义到ComboBox每个实例的列,当我不需要遍历SearchResult对象列表来绑定其他属性时,例如EventId.

为什么这个 binding-properties-by-name 只适用于某些属性而不适用于其他属性?

4

2 回答 2

3

我不太明白您为什么要使用它DataGridViewComboBoxColumn来显示元素列表。此列类型旨在允许用户选择多种可能性中的一种。它接缝不是你的情况,因为你没有public string SelectedTag{get;set;}财产来存储它。据我了解您的模型,您已经为您选择了许多标签,SearchResult并且您希望在网格中显示它们。

如文档所述:http: //msdn.microsoft.com/en-us/library/system.windows.forms.datagridviewcomboboxcolumn.datasource

获取或设置此 [ DataSource ] 属性获取或设置由 CellTemplate 属性返回的对象的 DataSource 属性。设置此属性还会设置列中每个单元格的 DataSource 属性并刷新列显示。要覆盖单个单元格的指定值,请在设置列值后设置单元格值。

DataGridViewComboBoxColumn 根本无法将 items 属性绑定到数据源,因为它假定只有一个元素列表用作数据网格所有行的数据源。

我还假设您会ReadOnly = true像为所有其他列设置属性一样为该列设置属性。如果是这样,它将阻止用户表单查看标签列表,因为永远不会显示下拉列表。

如果您想以只读模式显示字符串列表,我建议将此标签列表展平为单个字符串:

public string Tags { get { return string.Join(", ", tags); } }

并将其显示在文本列中。

于 2012-07-05T10:46:10.247 回答
1

对于这个错误,我可以建议你创建一个类的实例,然后调用该方法,因为它不是静态的,或者你可以使你的方法成为静态的。

此外,当您需要 comboboxcolumn 时,

DataGridViewComboBoxColumn tagsColumn = new DataGridViewComboBoxColumn();
        tagsColumn.DataSource = SearchResult.GetTags(); // ERROR 
        tagsColumn.DisplayMember = ""; // Still not sure
        tagsColumn.ValueMember = ""; // ??

大多数情况下,我们有 Country(id,name) 等对象的下拉列表,因此 DisplayMember = name 将在下拉列表中显示为文本,而 ValueMember = id 将在数据库中的引用表中使用。但这不是你的情况。

在这里,您有一个要在下拉列表中显示的字符串列表,因此您无需设置它们。如此处所写

如果 DataSource 属性设置为字符串数组,则不需要设置 ValueMember 和 DisplayMember,因为数组中的每个字符串都将用于值和显示。

于 2012-06-29T21:13:08.973 回答