Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Docs & Resources
Productivity and Design Tools
Hello, Is it possible to define a view (razor-class) as the content of a TabStripTab, as is possible in the Telerik WPF TabItem? Something like this:
<Tabcontrol>
<TabItem>
<TabItem.Content>
<view:AnotherProjectView x:Name="AnotherProjectView "/>
</TabItem.Content>
</TabItem>
</Tabcontrol>
Got it!
<TelerikTabStrip TabPosition="Telerik.Blazor.TabPosition.Top" @ref="mainTabStrip"> <TabStripTab Title="MyTab"> <AnotherProjectView ></AnotherProjectView > </TabStripTab> </TelerikTabStrip>