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.CameraControlBook.SuperSmallForm
{
public partial class GetTextRemarkSuperSmallForm : LYFZ.Software.UI.CameraControlBook.SuperSmallForm.GetTextRemarkSuperSmallForm
{
public GetTextRemarkSuperSmallForm()
{
}
///
/// txtText的Value值
///
public string StrValue = "";
///
/// 是否保存
///
public bool IsSaveed = false;
///
/// 备注的长度
///
public int txtMaxLength = 0;
///
/// 按回车键是否结束输入
///
public bool IsKeyEnterToOk = true;
///
/// 窗体加载事件
///
///
///
protected override void GetTextRemarkSuperSmallForm_Load(object sender, EventArgs e)
{
if (this.txtMaxLength > 0)
{ this.txtText.MaxLength = this.txtMaxLength; }
this.txtText.Text = StrValue;
this.txtText.Focus();
}
///
/// 输入后回车
///
///
///
protected override void txtText_KeyDown(object sender, KeyEventArgs e)
{
if (IsKeyEnterToOk)
{
if (e.KeyCode == Keys.Enter)
{ this.btnOK_Click(this, null); }
}
}
///
/// 确定
///
///
///
protected override void btnOK_Click(object sender, EventArgs e)
{
this.IsSaveed = true;
this.StrValue = this.txtText.Text.Trim();
this.Close();
}
///
/// 取消
///
///
///
protected override void btnCancel_Click(object sender, EventArgs e)
{ this.Close(); }
}
}