12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- 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;
- using LYFZ.Software.MainBusiness.DoorCityProcess;
- namespace LYFZ.Software.MainBusiness.ReportPrint.SuperSmallForm
- {
- public partial class DecimalSetSuperSmallForm : LYFZ.Software.UI.ReportPrint.SuperSmallForm.DecimalSetSuperSmallForm
- {
- public DecimalSetSuperSmallForm()
- {
- }
- private string _olddecimal = "#.00";
- public string OldDecimal
- {
- set { _olddecimal = value; }
- get { return _olddecimal; }
- }
- private string _setdecimal = "";
- public string SetDecimal
- {
- set { _setdecimal = value; }
- get { return _setdecimal; }
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void DecimalSetSuperSmallForm_Load(object sender, EventArgs e)
- {
- this.cmbText.Items.Add(new ListItem("5,000,000.00", "#,###.00"));
- this.cmbText.Items.Add(new ListItem("5,000,000", "#,###"));
- this.cmbText.Items.Add(new ListItem("5000000.00", "#.00"));
- this.cmbText.Items.Add(new ListItem("5000000", "#"));
- if (this.OldDecimal != "")
- { this.cmbText.Text = this.OldDecimal; }
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnOK_Click(object sender, EventArgs e)
- {
- if (this.cmbText.Text.Trim() != "")
- {
- ListItem li = (ListItem)this.cmbText.SelectedItem;
- string strKey = li.StrText; //得到选中项key(Prod_Name)
- string strValue = li.StrValue.ToString(); //得到选中项value (Prod_Class)
- this.SetDecimal = strValue;
- this.Close();
- }
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnCanel_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|