ZeroTierOne/windows/WinUI/MainWindow.xaml.cs

85 lines
2.3 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace WinUI
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
APIHandler handler = new APIHandler();
2015-10-27 01:08:44 +00:00
Regex charRegex = new Regex("[0-9a-fxA-FX]");
Regex wholeStringRegex = new Regex("^[0-9a-fxA-FX]+$");
public MainWindow()
{
InitializeComponent();
updateStatus();
updateNetworks();
2015-10-27 01:08:44 +00:00
DataObject.AddPastingHandler(joinNetworkID, OnPaste);
}
private void updateStatus()
{
2015-10-23 22:36:42 +00:00
var status = handler.GetStatus();
2015-10-23 22:36:42 +00:00
this.networkId.Content = status.Address;
this.versionString.Content = status.Version;
this.onlineStatus.Content = (status.Online ? "ONLINE" : "OFFLINE");
}
private void updateNetworks()
{
2015-10-23 22:36:42 +00:00
var networks = handler.GetNetworks();
networksPage.setNetworks(networks);
}
2015-10-23 22:36:42 +00:00
private void joinButton_Click(object sender, RoutedEventArgs e)
{
2015-10-23 22:50:49 +00:00
if (joinNetworkID.Text.Length < 16)
{
MessageBox.Show("Invalid Network ID");
}
else
{
handler.JoinNetwork(joinNetworkID.Text);
}
2015-10-23 22:36:42 +00:00
}
private void OnNetworkEntered(object sender, TextCompositionEventArgs e)
2015-10-23 22:36:42 +00:00
{
2015-10-27 01:08:44 +00:00
e.Handled = !charRegex.IsMatch(e.Text);
}
private void OnPaste(object sender, DataObjectPastingEventArgs e)
{
var isText = e.SourceDataObject.GetDataPresent(DataFormats.UnicodeText, true);
if (!isText) return;
var text = e.SourceDataObject.GetData(DataFormats.UnicodeText) as string;
if (!wholeStringRegex.IsMatch(text))
{
e.CancelCommand();
}
2015-10-23 22:36:42 +00:00
}
}
}