📄 inputbox.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 + -