-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLoad.cs
More file actions
37 lines (36 loc) · 1.02 KB
/
Load.cs
File metadata and controls
37 lines (36 loc) · 1.02 KB
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 System;
using System.Windows;
namespace CustomRPC
{
public static class Load
{
public static void lAppID(MainWindow window)
{
window.tbArgument.Text = window.client_id;
}
public static void lLargeImg(MainWindow window)
{
window.tbArgument.Text = window.LargeImg;
}
public static void lSmallImg(MainWindow window)
{
window.tbArgument.Text = window.SmallImg;
}
public static void lTimestamp(MainWindow window)
{
window.tbArgument.Text = window.TimeStamp.ToLocalTime().ToString();
}
public static void lPartyID(MainWindow window)
{
window.tbArgument.Text = window.PartyID;
}
public static void lSpectate(MainWindow window)
{
window.tbArgument.Text = window.SpectateCode;
}
public static void lAskToJoin(MainWindow window)
{
window.tbArgument.Text = window.AskToJoinCode;
}
}
}