//设置列属性
txt_wtcomp.Properties.View.Columns.Add();
txt_wtcomp.Properties.View.Columns[0].Visible = false;
txt_wtcomp.Properties.View.Columns.Add();
txt_wtcomp.Properties.View.Columns[1].Caption = "姓名";
txt_wtcomp.Properties.View.Columns[1].FieldName = "wtcompname";
? ? ? ? ? ? // Create three columns.
? ? ? ? ? ? tl.BeginUpdate();
? ? ? ? ? ? tl.Columns.Add();
? ? ? ? ? ? tl.Columns[0].Caption = "id";
? ? ? ? ? ? tl.Columns[0].VisibleIndex = 0;
? ? ? ? ? ? tl.Columns[0].FieldName = "id";
? ? ? ? ? ? tl.Columns.Add();
? ? ? ? ? ? tl.Columns[1].Caption = "名称";
? ? ? ? ? ? tl.Columns[1].VisibleIndex = 1;
? ? ? ? ? ? tl.Columns[1].Width = 150;