有combox控制項,命名為cbxPutStatus,在程式中為其手工定義數據源,並綁定 private void POrderSplitFrm_Load(object sender, EventArgs e) { //綁定定單狀態 this.cbxPutStatus.DataSource = Dat...
有combox控制項,命名為cbxPutStatus,在程式中為其手工定義數據源,並綁定
private void POrderSplitFrm_Load(object sender, EventArgs e)
{
//綁定定單狀態
this.cbxPutStatus.DataSource = DataTableForPutStatus();
this.cbxPutStatus.DisplayMember = "PutStatusString";
this.cbxPutStatus.ValueMember = "POrderApproveStatus";
this.cbxPutStatus.SelectedIndex = 0
}
private DataTable DataTableForPutStatus()
{
DataTable dt = new DataTable();
dt.Columns.Add("PutStatusString");
dt.Columns.Add("POrderApproveStatus");
//定義定單狀態 0:未發佈;1:已發佈;2:所有狀態
dt.LoadDataRow(new object[] { "待發佈", "0" }, true);
dt.LoadDataRow(new object[] { "已發佈", "1" }, true);
dt.LoadDataRow(new object[] { "所有狀態", "2" }, true);
return dt;
}