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
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.