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

📄 inputbox.cs

📁 全功能c#编译器
💻 CS
字号:
// created on 08.09.2003 at 22:11
using System;
using System.Windows.Forms;

using ICSharpCode.SharpDevelop.Gui.XmlForms;

namespace ICSharpCode.SharpDevelop.Gui.Dialogs {
	
	public class InputBox : BaseSharpDevelopForm
	{
		Label label;
		TextBox textBox;

		public Label Label {
			get {
				return label;
			}
		}
		public TextBox TextBox {
			get {
				return textBox;
			}
		}
		
		public InputBox() : base(System.IO.Path.Combine(PropertyService.DataDirectory, 
			                          @"resources\dialogs\InputBox.xfrm"))
		{
			label = (Label)ControlDictionary["label"];
			textBox = (TextBox)ControlDictionary["textBox"];
		}
	}
}

⌨️ 快捷键说明

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