Exemplo n.º 1
0
        private void btnOK_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtMiFont.Text))
            {
                txtMiFont.Text = "9";
            }

            if (string.IsNullOrEmpty(txtCateFont.Text))
            {
                txtCateFont.Text = "9";
            }

            TaSysFontInfo taSysFontInfo = new TaSysFontInfo();

            taSysFontInfo.miFont   = txtMiFont.Text;
            taSysFontInfo.cateFont = txtCateFont.Text;
            taSysFontInfo.ID       = CommonData.TaSysFont.FirstOrDefault().ID;
            _control.UpdateEntity(taSysFontInfo);
        }
Exemplo n.º 2
0
        private void FrmTaSysFont_Load(object sender, EventArgs e)
        {
            new SystemData().GetTaSysFont();

            var lstTaSysFont = CommonData.TaSysFont;

            if (lstTaSysFont.Any())
            {
                txtMiFont.Text   = lstTaSysFont.FirstOrDefault().miFont;
                txtCateFont.Text = lstTaSysFont.FirstOrDefault().cateFont;
            }
            else
            {
                txtMiFont.Text   = "9";
                txtCateFont.Text = "9";

                TaSysFontInfo taSysFontInfo = new TaSysFontInfo();
                taSysFontInfo.miFont   = "9";
                taSysFontInfo.cateFont = "9";
                _control.AddEntity(taSysFontInfo);
            }
        }