Projektdateien hinzufügen.

This commit is contained in:
Kevin Krüger
2022-07-08 15:24:48 +02:00
parent be47a7e74c
commit d25b2cda8e
21 changed files with 874 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
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; }
}
}