-
Notifications
You must be signed in to change notification settings - Fork 0
/
Global.cs
24 lines (22 loc) · 879 Bytes
/
Global.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ajkControls.Primitive;
namespace pluginVivado
{
public static class Global
{
public static SetupForm SetupForm = new SetupForm();
// public static CodeDrawStyle CodeDrawStyle = new CodeDrawStyle();
public static class Icons
{
//public static IconImage Exclamation = new IconImage(Properties.Resources.exclamation);
//public static IconImage ExclamationBox = new IconImage(Properties.Resources.exclamationBox);
public static IconImage Play = new IconImage(Properties.Resources.play);
public static IconImage Pause = new IconImage(Properties.Resources.pause);
public static IconImage Xilinx = new IconImage(Properties.Resources.xilinx);
}
}
}