1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- 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()
- {
- }
- /// <summary>
- /// txtText的Value值
- /// </summary>
- public string StrValue = "";
- /// <summary>
- /// 是否保存
- /// </summary>
- public bool IsSaveed = false;
- /// <summary>
- /// 备注的长度
- /// </summary>
- public int txtMaxLength = 0;
- /// <summary>
- /// 按回车键是否结束输入
- /// </summary>
- public bool IsKeyEnterToOk = true;
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- 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();
- }
- /// <summary>
- /// 输入后回车
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void txtText_KeyDown(object sender, KeyEventArgs e)
- {
- if (IsKeyEnterToOk)
- {
- if (e.KeyCode == Keys.Enter)
- { this.btnOK_Click(this, null); }
- }
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected override void btnOK_Click(object sender, EventArgs e)
- {
- this.IsSaveed = true;
- this.StrValue = this.txtText.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(); }
- }
- }
|