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 WordSpacingSuperSmallForm : LYFZ.Software.UI.ReportPrint.SuperSmallForm.WordSpacingSuperSmallForm
{
public WordSpacingSuperSmallForm()
{
}
private int _oldspacing = 0;
public int OldSpacing
{
set { _oldspacing = value; }
get { return _oldspacing; }
}
private int _newspacing = 0;
public int NewSpacing
{
set { _newspacing = value; }
get { return _newspacing; }
}
///
/// 窗体加载事件
///
///
///
protected override void WordSpacingSuperSmallForm_Load(object sender, EventArgs e)
{
this.cmbText.Text = this.OldSpacing.ToString();
}
///
/// 确定
///
///
///
protected override void btnOK_Click(object sender, EventArgs e)
{
NewSpacing = Convert.ToInt32(cmbText.Text.Trim());
this.Close();
}
///
/// 取消
///
///
///
protected override void btnCancel_Click(object sender, EventArgs e)
{
this.Close();
}
}
}