Posted 15 Dec 2012 Link to this post
Posted 17 Dec 2012 Link to this post
Posted 19 Dec 2012 Link to this post
RadHostItem host =
new
RadHostItem(radPanel1);
radTileElement1.Children.Add(host);
Posted 22 Dec 2012 Link to this post
Posted 25 Dec 2012 Link to this post
RadLabelElement label =
RadLabelElement();
label.Text =
"I am a label"
;
tile.Children.Add(label);
Posted 08 May 2015 in reply to Stefan Link to this post
HI,
I see this thread and I have similar question.
How could I add the Panel like Text at the bottom of tiles ( like Telerik's DevCraft demo, green one)
and with opacity 70%
kevin
Posted 11 May 2015 Link to this post
public
class
ModernLiveTileElement : RadLiveTileElement
{
LightVisualElement lowerElement;
protected
override
void
CreateChildElements()
base
.CreateChildElements();
lowerElement =
LightVisualElement();
lowerElement.StretchVertically =
false
lowerElement.Alignment = System.Drawing.ContentAlignment.BottomCenter;
lowerElement.DrawFill =
true
lowerElement.GradientStyle = Telerik.WinControls.GradientStyles.Solid;
lowerElement.BackColor = Color.FromArgb(180, 74, 200, 111);
lowerElement.ShouldHandleMouseInput =
this
.Children.Add(lowerElement);
}
See What's Next in App Development. Register for TelerikNEXT.
Posted 01 Feb 2016 in reply to Ivan Todorov Link to this post
Hello:Ivan Todorov
Problem :How can Drag and Drop radLiveTileElement1 in RadPanorama1 We have a radgrid and lablels in radPanel1. radPanel1 is host in radLiveTileElement1. But we are not able to drag and droprad LiveTileElement1. code : radLiveTileElement1.AllowDrag = true; radLiveTileElement1.AllowDrop = true; RadHostItem host = new RadHostItem(radPanel1); radLiveTileElement1.Children.Add(host);
Posted 02 Feb 2016 Link to this post