void AddControl(Product item, PrintSetting ps, Panel panel, string addText)
    {
        Category_ProductLabelUserControl uc = new Category_ProductLabelUserControl();
        uc = (Category_ProductLabelUserControl)LoadControl("~/Category/ProductLabelUserControl.ascx");
        uc.Fill_Letter(item.Code, item.LabelDesc + addText);
        uc.ResizeLabel(ps);

        panel.Controls.Add(uc);
    }
    void AddControl(Product item, PrintSetting ps, Panel panel, string addText)
    {
        Category_ProductLabelUserControl uc = new Category_ProductLabelUserControl();

        uc = (Category_ProductLabelUserControl)LoadControl("~/Category/ProductLabelUserControl.ascx");
        uc.Fill_Letter(item.Code, item.LabelDesc + addText);
        uc.ResizeLabel(ps);

        panel.Controls.Add(uc);
    }