Hi,
I found how to put into radlabel a image here: https://www.telerik.com/forums/image-for-label and here is my code:
((TextPrimitive)this.lblTitle1.LabelElement.Children[2].Children[1]).Font = new Font("Roboto", 32, FontStyle.Bold);
ImagePrimitive imgPrimitive = new ImagePrimitive();
this.lblTitle1.RootElement.Children[0].Children.Add(imgPrimitive);
imgPrimitive.Image = WSResourceManager.UiImageProvider.InfoYellowIcon.Get(WSConfigurationManager.GetInstance.GetLargeIconSize());
Now I would like to align the image to the text that is centered (designer):
but as a result I get this (result):
How can I align this icon to the text?