itaborder.cs

来自「SharpDevelop2.0.0 c#开发免费工具」· CS 代码 · 共 45 行

CS
45
字号
// <file>
//     <copyright see="prj:///doc/copyright.txt"/>
//     <license see="prj:///doc/license.txt"/>
//     <owner name="none" email=""/>
//     <version>$Revision: 915 $</version>
// </file>

using System;
using System.Drawing;

namespace ICSharpCode.FormsDesigner
{
	/// <summary>
	/// Interface defining the tab order mode.ning the tab order mode.
	/// </summary>
	public interface ITabOrder
	{
		/// <summary>
		/// Checks if tab order mode is active
		/// </summary>
		bool IsTabOrderMode { get; }

		/// <summary>
		/// Sets the next tab index if over a control.
		/// </summary>
		void SetNextTabIndex(Point p);
		
		/// <summary>
		/// Sets the previous tab index if over a control.
		/// </summary>
		void SetPrevTabIndex(Point p);
		
		/// <summary>
		/// Show tab order.
		/// </summary>
		void ShowTabOrder();
		
		/// <summary>
		/// Show tab order.
		/// </summary>
		void HideTabOrder();
		
	}
}

⌨️ 快捷键说明

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