⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 axshdocvw.cs

📁 全功能c#编译器
💻 CS
📖 第 1 页 / 共 4 页
字号:
				this.ClientToHostWindow(sender, e);
			}
		}
		
		internal void RaiseOnWindowClosing(object sender, DWebBrowserEvents2_WindowClosingEvent e) {
			if ((this.WindowClosing != null)) {
				this.WindowClosing(sender, e);
			}
		}
		
		internal void RaiseOnWindowSetHeight(object sender, DWebBrowserEvents2_WindowSetHeightEvent e) {
			if ((this.WindowSetHeight != null)) {
				this.WindowSetHeight(sender, e);
			}
		}
		
		internal void RaiseOnWindowSetWidth(object sender, DWebBrowserEvents2_WindowSetWidthEvent e) {
			if ((this.WindowSetWidth != null)) {
				this.WindowSetWidth(sender, e);
			}
		}
		
		internal void RaiseOnWindowSetTop(object sender, DWebBrowserEvents2_WindowSetTopEvent e) {
			if ((this.WindowSetTop != null)) {
				this.WindowSetTop(sender, e);
			}
		}
		
		internal void RaiseOnWindowSetLeft(object sender, DWebBrowserEvents2_WindowSetLeftEvent e) {
			if ((this.WindowSetLeft != null)) {
				this.WindowSetLeft(sender, e);
			}
		}
		
		internal void RaiseOnWindowSetResizable(object sender, DWebBrowserEvents2_WindowSetResizableEvent e) {
			if ((this.WindowSetResizable != null)) {
				this.WindowSetResizable(sender, e);
			}
		}
		
		internal void RaiseOnOnTheaterMode(object sender, DWebBrowserEvents2_OnTheaterModeEvent e) {
			if ((this.OnTheaterMode != null)) {
				this.OnTheaterMode(sender, e);
			}
		}
		
		internal void RaiseOnOnFullScreen(object sender, DWebBrowserEvents2_OnFullScreenEvent e) {
			if ((this.OnFullScreen != null)) {
				this.OnFullScreen(sender, e);
			}
		}
		
		internal void RaiseOnOnStatusBar(object sender, DWebBrowserEvents2_OnStatusBarEvent e) {
			if ((this.OnStatusBar != null)) {
				this.OnStatusBar(sender, e);
			}
		}
		
		internal void RaiseOnOnMenuBar(object sender, DWebBrowserEvents2_OnMenuBarEvent e) {
			if ((this.OnMenuBar != null)) {
				this.OnMenuBar(sender, e);
			}
		}
		
		internal void RaiseOnOnToolBar(object sender, DWebBrowserEvents2_OnToolBarEvent e) {
			if ((this.OnToolBar != null)) {
				this.OnToolBar(sender, e);
			}
		}
		
		internal void RaiseOnOnVisible(object sender, DWebBrowserEvents2_OnVisibleEvent e) {
			if ((this.OnVisible != null)) {
				this.OnVisible(sender, e);
			}
		}
		
		internal void RaiseOnOnQuit(object sender, System.EventArgs e) {
			if ((this.OnQuit != null)) {
				this.OnQuit(sender, e);
			}
		}
		
		internal void RaiseOnDocumentComplete(object sender, DWebBrowserEvents2_DocumentCompleteEvent e) {
			if ((this.DocumentComplete != null)) {
				this.DocumentComplete(sender, e);
			}
		}
		
		internal void RaiseOnNavigateComplete2(object sender, DWebBrowserEvents2_NavigateComplete2Event e) {
			if ((this.NavigateComplete2 != null)) {
				this.NavigateComplete2(sender, e);
			}
		}
		
		internal void RaiseOnNewWindow2(object sender, DWebBrowserEvents2_NewWindow2Event e) {
			if ((this.NewWindow2 != null)) {
				this.NewWindow2(sender, e);
			}
		}
		
		internal void RaiseOnBeforeNavigate2(object sender, DWebBrowserEvents2_BeforeNavigate2Event e) {
			if ((this.BeforeNavigate2 != null)) {
				this.BeforeNavigate2(sender, e);
			}
		}
		
		internal void RaiseOnPropertyChange(object sender, DWebBrowserEvents2_PropertyChangeEvent e) {
			if ((this.PropertyChange != null)) {
				this.PropertyChange(sender, e);
			}
		}
		
		internal void RaiseOnTitleChange(object sender, DWebBrowserEvents2_TitleChangeEvent e) {
			if ((this.TitleChange != null)) {
				this.TitleChange(sender, e);
			}
		}
		
		internal void RaiseOnDownloadComplete(object sender, System.EventArgs e) {
			if ((this.DownloadComplete != null)) {
				this.DownloadComplete(sender, e);
			}
		}
		
		internal void RaiseOnDownloadBegin(object sender, System.EventArgs e) {
			if ((this.DownloadBegin != null)) {
				this.DownloadBegin(sender, e);
			}
		}
		
		internal void RaiseOnCommandStateChange(object sender, DWebBrowserEvents2_CommandStateChangeEvent e) {
			if ((this.CommandStateChange != null)) {
				this.CommandStateChange(sender, e);
			}
		}
		
		internal void RaiseOnProgressChange(object sender, DWebBrowserEvents2_ProgressChangeEvent e) {
			if ((this.ProgressChange != null)) {
				this.ProgressChange(sender, e);
			}
		}
		
		internal void RaiseOnStatusTextChange(object sender, DWebBrowserEvents2_StatusTextChangeEvent e) {
			if ((this.StatusTextChange != null)) {
				this.StatusTextChange(sender, e);
			}
		}
	}
	
	public delegate void DWebBrowserEvents2_PrivacyImpactedStateChangeEventHandler(object sender, DWebBrowserEvents2_PrivacyImpactedStateChangeEvent e);
	
	public class DWebBrowserEvents2_PrivacyImpactedStateChangeEvent {
		
		public bool bImpacted;
		
		public DWebBrowserEvents2_PrivacyImpactedStateChangeEvent(bool bImpacted) {
			this.bImpacted = bImpacted;
		}
	}
	
	public delegate void DWebBrowserEvents2_UpdatePageStatusEventHandler(object sender, DWebBrowserEvents2_UpdatePageStatusEvent e);
	
	public class DWebBrowserEvents2_UpdatePageStatusEvent {
		
		public object pDisp;
		
		public object nPage;
		
		public object fDone;
		
		public DWebBrowserEvents2_UpdatePageStatusEvent(object pDisp, object nPage, object fDone) {
			this.pDisp = pDisp;
			this.nPage = nPage;
			this.fDone = fDone;
		}
	}
	
	public delegate void DWebBrowserEvents2_PrintTemplateTeardownEventHandler(object sender, DWebBrowserEvents2_PrintTemplateTeardownEvent e);
	
	public class DWebBrowserEvents2_PrintTemplateTeardownEvent {
		
		public object pDisp;
		
		public DWebBrowserEvents2_PrintTemplateTeardownEvent(object pDisp) {
			this.pDisp = pDisp;
		}
	}
	
	public delegate void DWebBrowserEvents2_PrintTemplateInstantiationEventHandler(object sender, DWebBrowserEvents2_PrintTemplateInstantiationEvent e);
	
	public class DWebBrowserEvents2_PrintTemplateInstantiationEvent {
		
		public object pDisp;
		
		public DWebBrowserEvents2_PrintTemplateInstantiationEvent(object pDisp) {
			this.pDisp = pDisp;
		}
	}
	
	public delegate void DWebBrowserEvents2_NavigateErrorEventHandler(object sender, DWebBrowserEvents2_NavigateErrorEvent e);
	
	public class DWebBrowserEvents2_NavigateErrorEvent {
		
		public object pDisp;
		
		public object uRL;
		
		public object frame;
		
		public object statusCode;
		
		public bool cancel;
		
		public DWebBrowserEvents2_NavigateErrorEvent(object pDisp, object uRL, object frame, object statusCode, bool cancel) {
			this.pDisp = pDisp;
			this.uRL = uRL;
			this.frame = frame;
			this.statusCode = statusCode;
			this.cancel = cancel;
		}
	}
	
	public delegate void DWebBrowserEvents2_FileDownloadEventHandler(object sender, DWebBrowserEvents2_FileDownloadEvent e);
	
	public class DWebBrowserEvents2_FileDownloadEvent {
		
		public bool cancel;
		
		public DWebBrowserEvents2_FileDownloadEvent(bool cancel) {
			this.cancel = cancel;
		}
	}
	
	public delegate void DWebBrowserEvents2_SetSecureLockIconEventHandler(object sender, DWebBrowserEvents2_SetSecureLockIconEvent e);
	
	public class DWebBrowserEvents2_SetSecureLockIconEvent {
		
		public int secureLockIcon;
		
		public DWebBrowserEvents2_SetSecureLockIconEvent(int secureLockIcon) {
			this.secureLockIcon = secureLockIcon;
		}
	}
	
	public delegate void DWebBrowserEvents2_ClientToHostWindowEventHandler(object sender, DWebBrowserEvents2_ClientToHostWindowEvent e);
	
	public class DWebBrowserEvents2_ClientToHostWindowEvent {
		
		public int cX;
		
		public int cY;
		
		public DWebBrowserEvents2_ClientToHostWindowEvent(int cX, int cY) {
			this.cX = cX;
			this.cY = cY;
		}
	}
	
	public delegate void DWebBrowserEvents2_WindowClosingEventHandler(object sender, DWebBrowserEvents2_WindowClosingEvent e);
	
	public class DWebBrowserEvents2_WindowClosingEvent {
		
		public bool isChildWindow;
		
		public bool cancel;
		
		public DWebBrowserEvents2_WindowClosingEvent(bool isChildWindow, bool cancel) {
			this.isChildWindow = isChildWindow;
			this.cancel = cancel;
		}
	}
	
	public delegate void DWebBrowserEvents2_WindowSetHeightEventHandler(object sender, DWebBrowserEvents2_WindowSetHeightEvent e);
	
	public class DWebBrowserEvents2_WindowSetHeightEvent {
		
		public int height;
		
		public DWebBrowserEvents2_WindowSetHeightEvent(int height) {
			this.height = height;
		}
	}
	
	public delegate void DWebBrowserEvents2_WindowSetWidthEventHandler(object sender, DWebBrowserEvents2_WindowSetWidthEvent e);
	
	public class DWebBrowserEvents2_WindowSetWidthEvent {
		
		public int width;
		
		public DWebBrowserEvents2_WindowSetWidthEvent(int width) {
			this.width = width;
		}
	}
	
	public delegate void DWebBrowserEvents2_WindowSetTopEventHandler(object sender, DWebBrowserEvents2_WindowSetTopEvent e);
	
	public class DWebBrowserEvents2_WindowSetTopEvent {
		
		public int top;
		
		public DWebBrowserEvents2_WindowSetTopEvent(int top) {
			this.top = top;
		}
	}
	
	public delegate void DWebBrowserEvents2_WindowSetLeftEventHandler(object sender, DWebBrowserEvents2_WindowSetLeftEvent e);
	
	public class DWebBrowserEvents2_WindowSetLeftEvent {
		
		public int left;
		
		public DWebBrowserEvents2_WindowSetLeftEvent(int left) {
			this.left = left;
		}
	}
	
	public delegate void DWebBrowserEvents2_WindowSetResizableEventHandler(object sender, DWebBrowserEvents2_WindowSetResizableEvent e);
	
	public class DWebBrowserEvents2_WindowSetResizableEvent {
		
		public bool resizable;
		
		public DWebBrowserEvents2_WindowSetResizableEvent(bool resizable) {
			this.resizable = resizable;
		}
	}
	
	public delegate void DWebBrowserEvents2_OnTheaterModeEventHandler(object sender, DWebBrowserEvents2_OnTheaterModeEvent e);
	
	public class DWebBrowserEvents2_OnTheaterModeEvent {
		
		public bool theaterMode;
		
		public DWebBrowserEvents2_OnTheaterModeEvent(bool theaterMode) {
			this.theaterMode = theaterMode;
		}
	}
	
	public delegate void DWebBrowserEvents2_OnFullScreenEventHandler(object sender, DWebBrowserEvents2_OnFullScreenEvent e);
	
	public class DWebBrowserEvents2_OnFullScreenEvent {
		
		public bool fullScreen;
		
		public DWebBrowserEvents2_OnFullScreenEvent(bool fullScreen) {
			this.fullScreen = fullScreen;
		}
	}
	
	public delegate void DWebBrowserEvents2_OnStatusBarEventHandler(object sender, DWebBrowserEvents2_OnStatusBarEvent e);
	
	public class DWebBrowserEvents2_OnStatusBarEvent {
		
		public bool statusBar;
		
		public DWebBrowserEvents2_OnStatusBarEvent(bool statusBar) {
			this.statusBar = statusBar;
		}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -