Add project files.

This commit is contained in:
2022-06-28 16:27:00 +02:00
parent b447579e84
commit 61be9cd8b0
18 changed files with 977 additions and 0 deletions

18
WinGreed/frmStart.cs Normal file
View File

@ -0,0 +1,18 @@
namespace WinGreed
{
public partial class frmStart : Form
{
private frmPersonRound fPR = null;
public frmStart()
{
InitializeComponent();
}
private void btnSpela_Click(object sender, EventArgs e)
{
fPR = new frmPersonRound("Tommy");
fPR.Show();
}
}
}