Example #1
0
		internal ExplorerBrowserNavigationLog(ExplorerBrowser parent) {
			if (parent == null) {
				throw new ArgumentException(LocalizedMessages.NavigationLogNullParent, "parent");
			}

			// Hook navigation events from the parent to distinguish between
			// navigation log induced navigation, and other navigations.
			this.parent = parent;
			this.parent.NavigationComplete += new EventHandler<NavigationCompleteEventArgs>(OnNavigationComplete);
			this.parent.NavigationFailed += new EventHandler<NavigationFailedEventArgs>(OnNavigationFailed);
		}
		internal ExplorerBrowserContentOptions(ExplorerBrowser eb) {
			this.eb = eb;
		}
Example #3
0
		internal ExplorerBrowserNavigationOptions(ExplorerBrowser eb) {
			this.eb = eb;
			PaneVisibility = new ExplorerBrowserPaneVisibility();
		}
		internal ExplorerBrowserViewEvents(ExplorerBrowser parent) {
			this.parent = parent;
		}