internal TouchScreenApplicationMenuItem(string name, int order, TouchScreenApplicationMenuAction action) {
     Name = name;
     Order = order;
     Action = action;
 }
 protected void RegisterMenu(string name, int order, TouchScreenApplicationMenuAction action) {
     menuOptions.Add(new TouchScreenApplicationMenuItem(name, order, action));
 }