-
Notifications
You must be signed in to change notification settings - Fork 0
/
Computer.cs
113 lines (104 loc) · 2.62 KB
/
Computer.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
* Copyright 2024 Đorđe Mančić
*/
using System;
using System.ComponentModel;
using System.Net.Sockets;
using System.Runtime.CompilerServices;
using System.Text.Json.Serialization;
using System.Windows.Media.Imaging;
namespace SavaMonitor
{
public class Computer : INotifyPropertyChanged
{
public string ID { get; set; }
private string name;
public string Name
{
get
{
return name;
}
set
{
name = value;
NotifyPropertyChanged("Name");
}
}
public string IPAddress;
private bool isConnected = false;
[JsonIgnore]
public bool IsConnected
{
get
{
return isConnected;
}
set
{
isConnected = value;
NotifyPropertyChanged("IsConnected");
NotifyPropertyChanged("ConnectionStatus");
}
}
[JsonIgnore]
public string ConnectionStatus
{
get
{
if (IsConnected == true)
{
return "On";
}
else
{
return "Off";
}
}
}
private BitmapImage latestScreenShotPrivate;
[JsonIgnore]
public BitmapImage LatestScreenShot
{
get
{
return latestScreenShotPrivate;
}
set
{
latestScreenShotPrivate = value;
NotifyPropertyChanged("LatestScreenShot");
}
}
public Int64 LastResponse;
public NetworkStream NetworkStream;
public UdpClient UDPClient;
public bool IsSharingScreen = false;
public void GenerateID()
{
ID = App.GenerateRandomString(16);
}
public Computer()
{
GenerateID();
BitmapImage bitmapImage = new BitmapImage();
bitmapImage.Freeze();
this.LatestScreenShot = bitmapImage;
}
public event PropertyChangedEventHandler PropertyChanged;
protected void NotifyPropertyChanged([CallerMemberName] String propertyName = "")
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
public class Student : Computer
{
public TcpClient TCPClient;
public Student() : base()
{
}
}
public class Teacher : Computer
{
}
}