1234567891011121314151617181920212223 |
- using FastReport.Forms;
- using FastReport.Utils;
- using System;
- using System.Windows.Forms;
- namespace FastReport.FastQueryBuilder
- {
- internal partial class InputBox : BaseDialogForm
- {
- public InputBox()
- {
- InitializeComponent();
- Font = DrawUtils.DefaultFont;
- Text = Res.Get("Forms,QueryBuilder,Alias");
- TextLabel.Text = Res.Get("Forms,QueryBuilder,InputAlias");
- }
- private void InputBox_Load(object sender, EventArgs e)
- {
- TextBox.Focus();
- }
- }
- }
|