InputBox.cs 560 B

1234567891011121314151617181920212223
  1. using FastReport.Forms;
  2. using FastReport.Utils;
  3. using System;
  4. using System.Windows.Forms;
  5. namespace FastReport.FastQueryBuilder
  6. {
  7. internal partial class InputBox : BaseDialogForm
  8. {
  9. public InputBox()
  10. {
  11. InitializeComponent();
  12. Font = DrawUtils.DefaultFont;
  13. Text = Res.Get("Forms,QueryBuilder,Alias");
  14. TextLabel.Text = Res.Get("Forms,QueryBuilder,InputAlias");
  15. }
  16. private void InputBox_Load(object sender, EventArgs e)
  17. {
  18. TextBox.Focus();
  19. }
  20. }
  21. }