用对象的 BindingList 填充 RadGridView 时出现问题

Problem while filling a RadGridView with a BindingList of objects

我需要一些帮助来解决一个小问题;我想使用一个从 Telerik 的 RadGridView 继承的组件。
我想用一个我创建的 class 的 RowService 的 BindingList 填充它,代码如下所示:

public class RowService
    {
        public String ServiceName { get; set; }
        public String Description { get; set; }
        public ServiceControllerStatus ServiceStatus { get; set; }
        public String State { get; set; }
        public ServiceStartModeEx StartMode { get; set; }
        public String StartType { get; set; }
        public String StartName { get; set; }
        public String PathName { get; set; }
        public String Version { get; set; }
        public String NewVersion { get; set; }
    }

列与此 class 的属性同名。
我在名为 bSourceServices 的 BindingList 中添加了不同的 RowService。当我尝试使用以下行将其关联到我的网格时,网格保持为空:

plkUcGridView1.DataSource = bSourceServices;
Here is a picture of what I obtain
我的网格是空的,即使 bSourceServices 不是(我检查了一个 foreach,它包含它应该包含的内容,列表不为空)。

感谢任何帮助我理解这个问题的人!

找到实现我想做的事情的方法:
我只需要用我的对象的属性名称来完成空字段“FieldName”。

现在,它与 myGridView.DataSource = myListOfObjects 配合使用效果很好。
谢谢!