using System; using System.Collections.Generic; using System.Text; namespace WinFormsContentLoading { public static class Globals { public static List penStylesList = new List(); public enum PensEnum { cigar, designer, slimline, comfort }; public static PensEnum thisPen; } }