Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
Hello,
is it possible to manipulate or clear the navigation history of the explorer control?
Best regards,
Philipp
Hello Philipp,
To clear the history, you can get the HistoryNavigationPaneControl and clear its DirectoryHistory collection.
private HistoryNavigationPaneControl historyNavigationPane; private void ExplorerControl_Loaded(object sender, RoutedEventArgs e) { this.historyNavigationPane = this.explorerControl.FindChildByType<HistoryNavigationPaneControl>(); } public void ClearDirectoryHistory() { this.historyNavigationPane.DirectoryHistory.Clear(); }
I hope that helps.
Regards, Martin Ivanov Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
Thank you, Martin! Thatwas exactly what I was looking for.