Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/addins/WindowsPlatform/WindowsAPICodePack/Shell/ExplorerBrowser/NavigationLogEvents.cs')
-rw-r--r--main/src/addins/WindowsPlatform/WindowsAPICodePack/Shell/ExplorerBrowser/NavigationLogEvents.cs27
1 files changed, 27 insertions, 0 deletions
diff --git a/main/src/addins/WindowsPlatform/WindowsAPICodePack/Shell/ExplorerBrowser/NavigationLogEvents.cs b/main/src/addins/WindowsPlatform/WindowsAPICodePack/Shell/ExplorerBrowser/NavigationLogEvents.cs
new file mode 100644
index 0000000000..377738e121
--- /dev/null
+++ b/main/src/addins/WindowsPlatform/WindowsAPICodePack/Shell/ExplorerBrowser/NavigationLogEvents.cs
@@ -0,0 +1,27 @@
+//Copyright (c) Microsoft Corporation. All rights reserved.
+
+using System;
+
+namespace Microsoft.WindowsAPICodePack.Controls
+{
+ /// <summary>
+ /// The event argument for NavigationLogChangedEvent
+ /// </summary>
+ public class NavigationLogEventArgs : EventArgs
+ {
+ /// <summary>
+ /// Indicates CanNavigateForward has changed
+ /// </summary>
+ public bool CanNavigateForwardChanged { get; set; }
+
+ /// <summary>
+ /// Indicates CanNavigateBackward has changed
+ /// </summary>
+ public bool CanNavigateBackwardChanged { get; set; }
+
+ /// <summary>
+ /// Indicates the Locations collection has changed
+ /// </summary>
+ public bool LocationsChanged { get; set; }
+ }
+} \ No newline at end of file