public static void AdjustButton(this TablePanel tablePanel, SimpleButton button)
 {
     tablePanel.AdjustControlSize(button, UIConstants.Size.BUTTON_WIDTH, UIConstants.Size.BUTTON_HEIGHT);
 }
 public static void AdjustButtonWithImageOnly(this TablePanel tablePanel, SimpleButton button)
 {
     tablePanel.AdjustControlSize(button, UIConstants.Size.RADIO_GROUP_HEIGHT, UIConstants.Size.BUTTON_HEIGHT);
 }
 public static void AdjustLongButtonWidth(this TablePanel tablePanel, SimpleButton button)
 {
     tablePanel.AdjustControlSize(button, UIConstants.Size.LARGE_BUTTON_WIDTH);
 }