-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMoreAboutUs.xaml.cs
37 lines (32 loc) · 1.11 KB
/
MoreAboutUs.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
using MahApps.Metro.Controls;
using System.ComponentModel;
using System.Runtime.CompilerServices;
namespace Notepad
{
/// <summary>
/// Interaction logic for MoreAboutUs.xaml
/// </summary>
public partial class MoreAboutUs : MetroWindow, INotifyPropertyChanged
{
private string details;
public event PropertyChangedEventHandler PropertyChanged;
private void OnPropertyChange([CallerMemberName] string caller = "")
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(caller));
}
}
public string Details
{
get { return details; }
set { details = value; OnPropertyChange(); }
}
public MoreAboutUs()
{
InitializeComponent();
Details = "This software is licensed under MIT License. It's provided as is. The Name's Mujeeb Ishaq aged 21. I am programmer from Lahore, Pakistan. Contact Me at nhawk1100@gmail.com";
DataContext = this;
}
}
}