private void ShowInfo(string F_DicID)
 {
     WSS.BLL.Dictionary   bll   = new WSS.BLL.Dictionary();
     WSS.Model.Dictionary model = bll.GetModel(F_DicID);
     this.lblF_DicID.Text     = model.F_DicID;
     this.txtF_ParentID.Text  = model.F_ParentID;
     this.txtF_Value.Text     = model.F_Value;
     this.chkF_IsUsed.Checked = model.F_IsUsed;
 }
 private void ShowInfo(string F_DicID)
 {
     WSS.BLL.Dictionary   bll   = new WSS.BLL.Dictionary();
     WSS.Model.Dictionary model = bll.GetModel(F_DicID);
     this.lblF_DicID.Text    = model.F_DicID;
     this.lblF_ParentID.Text = model.F_ParentID;
     this.lblF_Value.Text    = model.F_Value;
     this.lblF_IsUsed.Text   = model.F_IsUsed?"ÊÇ":"·ñ";
 }