forked from r-gc/PhantomAIBOX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext-color-change.cs
48 lines (38 loc) · 1.36 KB
/
text-color-change.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;
namespace AetherLauncher
{
internal class text_color_change
{
public static void ChangeTextColor(TextBlock textblock)
{
textblock.Foreground = new SolidColorBrush(Color.FromArgb(255, 255, 255, 255));
} public static void BackTextColor(TextBlock textblock)
{
textblock.Foreground = new SolidColorBrush(Color.FromArgb(255, 170, 173, 224));
}
}
internal class GUIcolor
{
dynamic phantomUIcolor1Background = new SolidColorBrush(Color.FromArgb(255, 255, 255, 255));//背景色
dynamic phantomUIcolor2Mosemove = new SolidColorBrush(Color.FromArgb(64, 255, 255, 255));//鼠标放置颜色
dynamic phantomUIcolor3Mousedown = new SolidColorBrush(Color.FromArgb(255, 255, 255, 255));//鼠标点击后颜色
}
internal class buttom_color_changed
{
public static void ChangeSets1() {
}
public static void ChangeSets2() { }
public static void ChangeSets3() { }
public static void ChangeSets4() { }
public static void ChangeSets5() { }
public static void ChangeSets6() { }
}
}