24 lines
537 B
C#
24 lines
537 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using WindowsFormsApp1.Test;
|
|
|
|
namespace WindowsFormsApp1.classes
|
|
{
|
|
public abstract class ABaseTexBox : TextBox
|
|
{
|
|
public virtual void Reset() => Text = string.Empty;
|
|
|
|
private protected void ResetProperties()
|
|
{
|
|
Name = string.Empty;
|
|
Description = string.Empty;
|
|
}
|
|
|
|
abstract public string Description { get; set; }
|
|
}
|
|
}
|