inputbox.cs

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

CS
33
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?