scrollbarmode.cs

来自「FreeTextBox HTML在线编辑器源代码 (C#源代码)阅读一下对掌握」· CS 代码 · 共 17 行

CS
17
字号
using System;

namespace FreeTextBoxControls {
	/// <summary>
	/// Determines the style of the scroll bar.
	/// </summary>
	public enum ScrollbarMode {
		/// <summary>
		/// No styles are applied.  The default scroll bar is used.
		/// </summary>
		None = 0,
		/// <summary>
		/// Uses styles from the ScrollbarStyle object which defaults to a Visual Studio.NET style flat scrollbar.
		/// </summary>
		Style = 1
	}
}

⌨️ 快捷键说明

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