コード例 #1
0
ファイル: HtmlView.cs プロジェクト: tangxuehua/DataStructure
		internal void RaiseOnFileDownload(object sender, DWebBrowserEvents2_FileDownloadEvent e) 
		{
			if ((this.FileDownload != null)) 
			{
				this.FileDownload(sender, e);
			}
		}
コード例 #2
0
ファイル: HtmlView.cs プロジェクト: tangxuehua/DataStructure
		public virtual void FileDownload(ref bool cancel) 
		{
			DWebBrowserEvents2_FileDownloadEvent filedownloadEvent = new DWebBrowserEvents2_FileDownloadEvent(cancel);
			this.parent.RaiseOnFileDownload(this.parent, filedownloadEvent);
			cancel = filedownloadEvent.cancel;
		}