You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Übungen_LF6_WinFormanwendung
{
public partial class QueueÜbung : Form
{
PatientenQueue Patienten = new PatientenQueue();
string aufnahmePatient = "";
string aufrufPatient = "";
int anzahlPatienten = 0;
public QueueÜbung()
{
InitializeComponent();
textBox_Anzahl.Text = Convert.ToString(Patienten.anzahlPatienten());
}
private void button_ende_Click(object sender, EventArgs e)
{
this.Close();
}
private void button_AufnahmeNormal_Click(object sender, EventArgs e)
{
aufnahmePatient = textBox_Aufnahme.Text;
Patienten.einreihenNormal(aufnahmePatient);
textBox_Anzahl.Text = Convert.ToString(Patienten.anzahlPatienten());
textBox_Aufnahme.Clear();
}
private void button_AufnahmeNotfall_Click(object sender, EventArgs e)
{
aufnahmePatient = textBox_Aufnahme.Text;
Patienten.einreihenNotfall(aufnahmePatient);
textBox_Anzahl.Text = Convert.ToString(Patienten.anzahlPatienten());
textBox_Aufnahme.Clear();
}
private void button_Aufruf_Click(object sender, EventArgs e)
{
textBox_Aufruf.Text = Patienten.aufrufen();
textBox_Anzahl.Text = Convert.ToString(Patienten.anzahlPatienten());
}
}
}