📄 itaborder.cs
字号:
// <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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -