1234567891011121314151617181920212223242526 |
- using ExtensionsDev;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace XdCxRhDW.App.CorTools
- {
- public partial class XlCalculateForm : DevExpress.XtraEditors.XtraForm
- {
- public XlCalculateForm()
- {
- InitializeComponent();
- }
- private void XlCalculateForm_Load(object sender, EventArgs e)
- {
- txtTle.UseDoubleClickToSelectAll();
- }
- }
- }
|