using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Configuration; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Media; namespace GummingCommon { public class AppParameter { public const int DotOffset = 3; public static string CurrentGraphTool = string.Empty; public static string CurrentMeridianTool = string.Empty; public static string CurrentSelectedPhoto = string.Empty; public static Brush GraphToolBrush = new SolidColorBrush(Color.FromRgb(0, 123, 187)); public static Brush GraphToolFillColor = new SolidColorBrush(Color.FromArgb(100, 200, 200, 200)); public static System.Drawing.Pen GraphToolPen = new System.Drawing.Pen(System.Drawing.Color.FromArgb(0, 123, 187)); public static System.Drawing.Brush GraphToolDrawColor = new System.Drawing.SolidBrush(System.Drawing.Color.FromArgb(100, 200, 200, 200)); public static List CommandList = new List(); public static ObservableCollection CurrentBigDeal; public static TestitemEntityExtension CurrentTester; public const string PageTypeGroupBase = "base"; public const string PageTypeGroupReport = "report"; public const string EvaluationPartTypeGroup = "part"; public const string EvaluationSystemTypeGroup = "system"; public static bool IsLoadAnalysis = false; public static bool IsTestRecordFirstLoad = true; public static bool IsFirstIniCamera = true; public static bool IsCameraOpened = false; public static int CurrentMeridianIndexFore = 2; public static int CurrentMeridianIndexBack = 3; } }