Completed
Last Updated: 25 Nov 2019 12:03 by ADMIN
Release LIB 2019.3.1125
Martin Ivanov
Created on: 13 Nov 2019 16:34
Category: TabControl
Type: Bug Report
1
TabControl: Drag and drop of controls from the toolbox to the content of the selected tab in the designer doesn't work

Drag and drop from Visual Studio Toolbox to the designer area doesn't allow you to drop the corresponding control inside the content of the selected tab item. 

To work this around, add a Grid panel with transparent background inside the RadTabItem's in XAML. You can do this also  through the toolbox.

 <telerik:RadTabItem x:Name="RadTabItem1" Header="Tab item 1">
	<Grid Background="Transparent" />
 </telerik:RadTabItem>

0 comments