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,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp1.OP
{
public class PropertyObserver : IObserver<string>
{
public PropertyObserver()
{ }
public void Update(ISubject<string> subject)
{
MessageBox.Show(subject.GetState());
}
}
}