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

📄 urlcontext.cs

📁 自己做的一个浏览器~~大家请看看~如果合意给个彩头
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace APLib.Windows.Control
{
	[Flags]
	public enum UrlContext
	{
		/// <summary>
		/// No information Present
		/// </summary>
		None = 0x0,
		/// <summary>
		/// The page is unloading. This flag is set in response to the onbeforeunload and onunload events. 
		/// Some pages load pop-up windows when you leave them rather than when you enter. This flag is used to identify those situations.
		/// </summary>
		Unloading = 0x1,
		/// <summary>
		/// The call to INewWindowManager::EvaluateNewWindow is the result of a user-initiated action 
		/// (a mouse click or key press). Use this flag in conjunction with the NWMF_FIRST_USERINITED flag 
		/// to determine whether the call is a direct or indirect result of the user-initiated action.
		/// </summary>
		UserInited = 0x2,
		/// <summary>
		/// When NWMF_USERINITED is present, this flag indicates that the call to 
		/// INewWindowManager::EvaluateNewWindow is the first query that results from this user-initiated action. 
		/// Always use this flag in conjunction with NWMF_USERINITED.
		/// </summary>
		UserFirstInited = 0x4,
		/// <summary>
		/// The override key (ALT) was pressed. The override key is used to bypass the pop-up manager梐llowing 
		/// all pop-up windows to display梐nd must be held down at the time that INewWindowManager::EvaluateNewWindow is called. 
		/// </summary>
		OverrideKey = 0x8,
		/// <summary>
		/// The new window attempting to load is the result of a call to the showHelp method. Help is sometimes displayed in a separate window, 
		/// and this flag is valuable in those cases.
		/// </summary>
		ShowHelp = 0x10,
		/// <summary>
		/// The new window is a dialog box that displays HTML content.
		/// </summary>
		HtmlDialog = 0x20,
		/// <summary>
		/// Indicates that the EvaluateNewWindow method is being called through a marshalled Component Object Model (COM) proxy 
		/// from another thread. In this situation, the method should make a decision and return immediately without performing 
		/// blocking operations such as showing modal user interface (UI). Lengthy operations will cause the calling thread to 
		/// appear unresponsive.
		/// </summary>
		FromProxy = 0x40
	}
}

⌨️ 快捷键说明

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