I want to know the Item name from the resource to use for EpiUIImages.GetImage("[ItemName]")?
menuActionTool = (PopupMenuTool)baseToolbarsManager.Tools["ActionsMenu"];//Chú ý GroupTool là name của menu Group debug hoặc dùng message show để lấy đc thông tin này
//bổ sung menu PrintPayment
ButtonTool PrintPayment = new ButtonTool("PrintPayment");
PrintPayment.SharedProps.Caption = "**DMS - Print Payment"; // Sets the visible name
PrintPayment.SharedProps.DisplayStyle = ToolDisplayStyle.ImageAndText;
PrintPayment.SharedProps.AppearancesSmall.Appearance.Image = EpiUIImages.GetImage("ExternalProcess"); // Item name from the resource
baseToolbarsManager.Tools.Add(PrintPayment);
menuActionTool.Tools.AddTool("PrintPayment");
Thank you so much have a good day!