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; }
}
///
/// 窗体加载事件
///
///
///
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; }
}
///
/// 确定
///
///
///
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();
}
}
///
/// 取消
///
///
///
protected override void btnCanel_Click(object sender, EventArgs e)
{
this.Close();
}
}
}