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,34 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel;
namespace WindowsFormsApp1.Test
{
public class ExtendedTB : BaseTextBox
{
public ExtendedTB() : base()
{
ForeColor = Color.White;
BackColor = Color.Red;
}
public override void Reset()
{
base.Reset();
Text = "Resetted!";
}
[DefaultValue(typeof(Color), "Red")]
public Color BackColor
{
get { return base.BackColor; }
set { base.BackColor = value; }
}
public override string Description { get => base.Description; set => base.Description = value; }
}
}