or
Hello,
I have a RadGridView, I need to add two controls is a single cell (i.e. Combobox and image button ).
Hi i am new to telerik and was trying telerik grid view for the first time.
can u please tell me if it is possible to add column group at design time???
ToolWindow toolWindow = new ToolWindow("Menu"); |
toolWindow.BackColor = Color.Transparent; |
this.dockWorkField.DockWindow(toolWindow, DockPosition.Left); |
//Change tooltabstrip color |
ToolTabStrip toolTab = (ToolTabStrip)toolWindow.Parent; |
toolTab.BackColor = Color.Transparent; |
toolTab.RootElement.Shape = this.roundRectShape; |
toolTab.Padding = new Padding(3); |
((FillPrimitive)(toolTab.RootElement.Children[0].Children[0].Children[0])).GradientStyle = Telerik.WinControls.GradientStyles.Solid; |
((FillPrimitive)(toolTab.RootElement.Children[0].Children[0].Children[0])).BackColor = Color.FromArgb(219, 198, 201); |
((FillPrimitive)(toolTab.RootElement.Children[0].Children[0].Children[0])).Shape = this.roundRectShapeTop; |
((BorderPrimitive)(toolTab.RootElement.Children[0].Children[0].Children[1])).Shape = this.roundRectShapeTop; |
//Change splitter color |
FillPrimitive FillElement = (FillPrimitive)this.dockWorkField.RootElement.Children[1].Children[0].Children[0]; |
FillElement.BackColor = Color.Transparent; |
FillElement.GradientStyle = Telerik.WinControls.GradientStyles.Solid; |