forked from ATrefzer/CSharpCodeAnalyst
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.cs
More file actions
23 lines (17 loc) · 728 Bytes
/
Copy pathConstants.cs
File metadata and controls
23 lines (17 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using Microsoft.Msagl.Drawing;
namespace CSharpCodeAnalyst;
public class Constants
{
public const double TreeMinWidthCollapsed = 24;
public const double TreeMinWidthExpanded = 400;
public const int FlagLineWidth = 3;
public const int SearchHighlightLineWidth = 2;
public const double DefaultLineWidth = 1;
public const int MouseHighlightLineWidth = 3;
public static Color FlagColor = Color.Red;
public static Color SearchHighlightColor = Color.Red;
public static Color DefaultLineColor = Color.Black;
public static int DoubleClickMilliseconds = 350;
public static readonly Color GrayColor = Color.LightGray;
public static readonly Color MouseHighlightColor = Color.Red;
}