this.myConn.Open();
this.myAdapter = new System.Data.SqlClient.SqlDataAdapter();
this.myAdapter.SelectCommand = new System.Data.SqlClient.SqlCommand("select AreaName from Areas",myConn);
this.myDataSet = new System.Data.DataSet();
this.myAdapter.Fill(myDataSet,"areas");
//areas是一个combobox控件
this.Areas.DataSource = this.myDataSet.Tables["areas"];可这样,显示的时候,会出现System.Data.DataRowView为什么会出现这样的东西?