Moved group table and row parsing into a separate DLL to clean up the main binary a bit. Added custom engine to detect for bin counts and updated the record form to total the bins for the user automatically. Updated the .gitignore file to include the necessary DLLs for the projects.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System.Drawing;
|
||||
|
||||
namespace DataTableParsingEngine
|
||||
{
|
||||
public class TableColors
|
||||
{
|
||||
public static Color EditingSaved = Color.ForestGreen;
|
||||
public static Color PendingEdit = Color.Yellow;
|
||||
public static Color RowError = Color.Red;
|
||||
public static Color HeaderRow = Color.LightGray;
|
||||
public static Color MemberRow = Color.LightBlue;
|
||||
public static Color AdSpecial = Color.Silver;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user