XlCalculateForm.cs 589 B

1234567891011121314151617181920212223242526
  1. using ExtensionsDev;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. namespace XdCxRhDW.App.CorTools
  12. {
  13. public partial class XlCalculateForm : DevExpress.XtraEditors.XtraForm
  14. {
  15. public XlCalculateForm()
  16. {
  17. InitializeComponent();
  18. }
  19. private void XlCalculateForm_Load(object sender, EventArgs e)
  20. {
  21. txtTle.UseDoubleClickToSelectAll();
  22. }
  23. }
  24. }