forked from cloudsdaleapp/cloudsdale-win7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml.cs
74 lines (63 loc) · 2.14 KB
/
MainWindow.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
using System;
using System.Security.Cryptography;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Forms.VisualStyles;
using CloudsdaleWin7.lib.Helpers;
using CloudsdaleWin7.lib.Models;
namespace CloudsdaleWin7
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow
{
public static MainWindow Instance;
public int MaxCharacters
{
get { return (int) GetValue(MaxCharactersProperty); }
set { SetValue(MaxCharactersProperty, value); }
}
public MainWindow()
{
Instance = this;
ClientVersion.Validate();
InitializeComponent();
MainFrame.Navigate(new Login());
App.Connection.MainFrame = MainFrame;
Testvoid();
StateChanged += (sender, args) =>
{
if (WindowState == WindowState.Minimized)
App.Connection.NotificationController.Receive = true;
};
LostFocus += (sender, args) =>
{
App.Connection.NotificationController.Receive = true;
};
GotFocus += (sender, args) =>
{
App.Connection.NotificationController.Receive = false;
};
Closing += (sender, args) => App.Close();
}
public static DependencyProperty MaxCharactersProperty =
DependencyProperty.Register("MaxCharacters", typeof (int), typeof (MainWindow),
new FrameworkPropertyMetadata(200));
private void Testvoid()
{
}
private void AdjustTitle(object sender, System.Windows.Navigation.NavigationEventArgs e)
{
try
{
Title = ((Page)MainFrame.Content).Title;
}
catch
{
Title = "Cloudsdale";
}
}
}
}