Move source code into "Source" folder
This commit is contained in:
parent
1ee73fa1a7
commit
389fbb2371
287 changed files with 26 additions and 8 deletions
30
Source/LibationWinForms/Dialogs/SetupDialog.cs
Normal file
30
Source/LibationWinForms/Dialogs/SetupDialog.cs
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
using System;
|
||||
using System.Linq;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace LibationWinForms.Dialogs
|
||||
{
|
||||
public partial class SetupDialog : Form
|
||||
{
|
||||
public bool IsNewUser { get; private set; }
|
||||
public bool IsReturningUser { get; private set; }
|
||||
|
||||
public SetupDialog() => InitializeComponent();
|
||||
|
||||
private void newUserBtn_Click(object sender, EventArgs e)
|
||||
{
|
||||
IsNewUser = true;
|
||||
|
||||
this.DialogResult = DialogResult.OK;
|
||||
Close();
|
||||
}
|
||||
|
||||
private void returningUserBtn_Click(object sender, EventArgs e)
|
||||
{
|
||||
IsReturningUser = true;
|
||||
|
||||
this.DialogResult = DialogResult.OK;
|
||||
Close();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue