12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- 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; }
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void WordSpacingSuperSmallForm_Load(object sender, EventArgs e)
- {
- this.cmbText.Text = this.OldSpacing.ToString();
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnOK_Click(object sender, EventArgs e)
- {
- NewSpacing = Convert.ToInt32(cmbText.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();
- }
- }
- }
|