123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.MainBusiness.ReportPrint.SuperSmallForm
- {
- public partial class SettingValueSuperSmallForm : LYFZ.Software.UI.ReportPrint.SuperSmallForm.SettingValueSuperSmallForm
- {
- public SettingValueSuperSmallForm()
- {
- }
- private string _loadtype = "";
- public string LoadType
- {
- set { _loadtype = value; }
- get { return _loadtype; }
- }
- private string _strtext = "";
- public string StrText
- {
- set { _strtext = value; }
- get { return _strtext; }
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void SettingValueSuperSmallForm_Load(object sender, EventArgs e)
- {
- switch (LoadType)
- {
- case "DateTime": this.txtValue.Size = new Size(218, 22); this.txtValue.Text = LYFZ.Command.Command_Validate.DateTimeToString(SDateTime.Now, "yyyy-MM-dd HH:mm:ss"); break;
- case "NvarChar": this.txtValue.Size = new Size(218, 67); break;
- case "Decimal": this.txtValue.Size = new Size(218, 22); this.txtValue.Text = "5000.00"; break;
- }
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnOK_Click(object sender, EventArgs e)
- {
- StrText = this.txtValue.Text.Trim();
- this.Close();
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnCancel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|