diff options
| author | MichaelTheShifter <[email protected]> | 2016-05-17 15:37:02 -0400 |
|---|---|---|
| committer | MichaelTheShifter <[email protected]> | 2016-05-17 15:37:02 -0400 |
| commit | a3fc2c45ec2a62684e128ffd7cab88bd101ad917 (patch) | |
| tree | 1dc63efaa4597a28fd901047a714f38954dafa5e /source/WindowsFormsApplication1/FinalMission/MissionGuide.cs | |
| parent | 0085241d2366f266b5416488dbead174184420b0 (diff) | |
| download | shiftos-c-_theultimatehacker-a3fc2c45ec2a62684e128ffd7cab88bd101ad917.tar.gz shiftos-c-_theultimatehacker-a3fc2c45ec2a62684e128ffd7cab88bd101ad917.tar.bz2 shiftos-c-_theultimatehacker-a3fc2c45ec2a62684e128ffd7cab88bd101ad917.zip | |
Committing all I've got
Committing everything I've got - so that I can take a break for a few
months and work on other things.
Diffstat (limited to 'source/WindowsFormsApplication1/FinalMission/MissionGuide.cs')
| -rw-r--r-- | source/WindowsFormsApplication1/FinalMission/MissionGuide.cs | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/source/WindowsFormsApplication1/FinalMission/MissionGuide.cs b/source/WindowsFormsApplication1/FinalMission/MissionGuide.cs new file mode 100644 index 0000000..11f1f10 --- /dev/null +++ b/source/WindowsFormsApplication1/FinalMission/MissionGuide.cs @@ -0,0 +1,49 @@ +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 ShiftOS.FinalMission +{ + public partial class MissionGuide : Form + { + public MissionGuide() + { + InitializeComponent(); + this.TopMost = true; + } + + public Action OnButtonClick = null; + + public bool ShowButton + { + get { return btnstart.Visible; } + set { btnstart.Visible = value; } + } + + public string ButtonText + { + get { return btnstart.Text; } + set { btnstart.Text = value; } + } + + + + private void btnstart_Click(object sender, EventArgs e) + { + OnButtonClick.Invoke(); + } + + private void tmr_setupui_Tick(object sender, EventArgs e) + { + lbprompt.Text = EndGameHandler.CurrentObjective.ToUpper() + Environment.NewLine + Environment.NewLine; + lbprompt.Text += EndGameHandler.CurrentObjectivePrompt; + this.Location = new Point(15, 45); + } + } +} |
