DataGrid column size (Compact Framework) C#
问题 I'm new with DataGrids. My Code: private void populateGrid() { conn.Open(); string query; query = "select company_id_no, company_name, last_update_datetime, username from company"; OracleDataAdapter da = new OracleDataAdapter(query, conn); OracleDataSet ds = new OracleDataSet(); da.Fill(ds); dgSku.DataSource = ds.Tables[0]; } This is how it looks on my mobile device: I want it to automatically re-size the columns to 100%, like: I would really appreciate if someone can point me in the right