Skip to content

Instantly share code, notes, and snippets.

@coronarob
Created February 24, 2015 01:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coronarob/2aa7a210e5b1be74906f to your computer and use it in GitHub Desktop.
Save coronarob/2aa7a210e5b1be74906f to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Navigation;
using Microsoft.Phone.Controls;
using Microsoft.Phone.Shell;
namespace TextTutorial
{
public partial class InputForm : UserControl
{
public event EventHandler<EventArgs> Submitted;
public event EventHandler<EventArgs> Canceled;
public InputForm()
{
InitializeComponent();
this.MinWidth = System.Windows.Application.Current.Host.Content.ActualWidth * 0.8;
}
public string Username
{
get { return fUsernameTextBox.Text; }
set
{
if (value == null)
{
value = string.Empty;
}
fUsernameTextBox.Text = value;
}
}
public string Password
{
get { return fPasswordTextBox.Password; }
set
{
if (value == null)
{
value = string.Empty;
}
fPasswordTextBox.Password = value;
}
}
private void OkayButton_Click(object sender, RoutedEventArgs e)
{
if (this.Submitted != null)
{
this.Submitted.Invoke(this, EventArgs.Empty);
}
}
private void CancelButton_Click(object sender, RoutedEventArgs e)
{
if (this.Canceled != null)
{
this.Canceled.Invoke(this, EventArgs.Empty);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment