public static class FormUtility
{
public static bool CheckOpenForm(string frmName)
{
bool bl = false;
foreach (Form f in Application.OpenForms)
{
if (f.Name == frmName)
{
bl = true;
break;
}
}
return bl;
}
public static Form GetOpenForm(string frmName)
{
Form frm = null;
foreach (Form f in Application.OpenForms)
{
if (f.Name == frmName)
{
frm = f;
break;
}
}
return frm;
}
public static void AddPanelForm(this Panel panel, Form frm)
{
bool bExist = false;
if (CheckOpenForm(frm.Name))
{
Form f = GetOpenForm(frm.Name);
bool bl = false;
foreach (Control c in panel.Controls)
{
if (c is Form)
{
Form form = c as Form;
if (form.Name == f.Name)
{
frm = form;
bl = true;
bExist = true;
break;
}
}
}
if (!bl)
{
frm = f;
}
}
panel.Controls.Clear();
frm.TopLevel = false;
frm.FormBorderStyle = FormBorderStyle.None;
frm.WindowState = FormWindowState.Maximized;
frm.Dock = DockStyle.Fill;
panel.AutoScroll = true;
panel.Controls.Add(frm);
frm.Show();
}
public static void ShowDgvCols(this DataGridView dgv, bool isDel)
{
dgv.Columns["colEdit"].Visible = !isDel;
dgv.Columns["colDel"].Visible = !isDel;
dgv.Columns["colRecover"].Visible = isDel;
dgv.Columns["colRemove"].Visible = isDel;
}
public static string GetDelName(int delCode)
{
string delName = "删除";
switch (delCode)
{
case 1:delName = "删除";break;
case 0: delName = "恢复"; break;
case 2: delName = "移除"; break;
}
return delName;
}
public static void LoadCboStores(ComboBox cbo)
{
StoreBLL storeBLL = new StoreBLL();
List<StoreInfo> storeList = storeBLL.GetAllStores();
storeList.Insert(0, new StoreInfo()
{
StoreId = 0,
StoreName = "-----请选择-----"
});
cbo.DisplayMember = "StoreName";
cbo.ValueMember = "StoreId";
cbo.DataSource = storeList;
cbo.SelectedIndex = 0;
}
public static List<RegionStateModel> RegionStateList()
{
return new List<RegionStateModel>()
{
new RegionStateModel(){RegionState =-1,StateText="全部"},
new RegionStateModel(){RegionState =0,StateText="低温"},
new RegionStateModel(){RegionState =1,StateText="正常"},
new RegionStateModel(){RegionState =2,StateText="高温"}
};
}
}