| 123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using UAS_MES.Entity;
- namespace UAS_MES.CustomControl.TextBoxWithIcon
- {
- public partial class SnCollectionBox : EnterTextBox
- {
- public SnCollectionBox()
- {
- InitializeComponent();
- }
- public override string Text
- {
- get
- {
- if (SystemInf.UpperCollection)
- return base.Text.ToUpper();
- else
- return base.Text;
- }
- set
- {
- base.Text = value;
- }
- }
- }
- }
|