/// <summary>
 /// IndBudgetContextMenu class constructor
 /// </summary>
 public IndBudgetContextMenu()
 {
     try
     {
         ControlHierarchyManager = new ControlHierarchyManager(this);
         //set context menu skin name
         this.Skin = "Default";
         //set context menu skin path
         this.SkinsPath = "~/Skins/Menu";
         //set menu to became context menu
         this.IsContext = true;
         //set context menu item click event
         this.ItemClick += new RadMenuEventHandler(gridContextMenu_ItemClick);
     }
     catch (IndException ex)
     {
         ControlHierarchyManager.ReportError(ex);
         return;
     }
     catch (Exception ex)
     {
         ControlHierarchyManager.ReportError(new IndException(ex));
         return;
     }
 }
 /// <summary>
 /// Default Constructor
 /// </summary>
 public IndCatYearMonth()
 {
     //Set the value for the labels
     lblYear.ID              = "lblYear";
     lblYear.Text            = "Year";
     lblMonth.ID             = "lblMonth";
     lblMonth.Text           = "Month";
     cmbYear.ID              = "cmbYear";
     cmbYear.Width           = 60;
     cmbYear.Height          = 100;
     cmbMonth.ID             = "cmbMonth";
     cmbMonth.Width          = 40;
     cmbMonth.Height         = 100;
     _FirstYear              = YearMonth.FirstYear;
     _LastYear               = YearMonth.LastYear;
     ControlHierarchyManager = new ControlHierarchyManager(this);
 }
 public IndReforecastBudgetVarLabel()
 {
     ControlHierarchyManager = new ControlHierarchyManager(this);
 }
 public IndAmountScaleComboBox()
 {
     this.SkinsPath          = "~/Skins/ComboBox";
     this.Skin               = "Default";
     ControlHierarchyManager = new ControlHierarchyManager(this);
 }