itaborder.cs

来自「全功能c#编译器」· CS 代码 · 共 45 行

CS
45
字号
// <file>
//     <copyright see="prj:///doc/copyright.txt"/>
//     <license see="prj:///doc/license.txt"/>
//     <owner name="Gerd Klevesaat" email="g.klevesaat@t-online.de"/>
//     <version value="$version"/>
// </file>

using System;
using System.Drawing;

namespace ICSharpCode.SharpDevelop.FormDesigner
{
	/// <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 + -
显示快捷键?