18 lines
356 B
C#
18 lines
356 B
C#
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();
|
|
|
|
}
|
|
}
|
|
} |