35 lines
787 B
C#
35 lines
787 B
C#
using DevExpress.XtraEditors;
|
|
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;
|
|
|
|
using LFP_Manager.DataStructure;
|
|
|
|
namespace LFP_Manager.Controls
|
|
{
|
|
public partial class ucCalibrationView : DevExpress.XtraEditors.XtraUserControl
|
|
{
|
|
#region VARIABLES
|
|
|
|
private CsDeviceData.DeviceModuleData ModuleData;
|
|
|
|
#endregion
|
|
|
|
public ucCalibrationView()
|
|
{
|
|
InitializeComponent();
|
|
|
|
edBattCapacity.Enabled = false;
|
|
edChgOption.Enabled = false;
|
|
edChgCalibration.Enabled = false;
|
|
edDchCalibration.Enabled = false;
|
|
}
|
|
}
|
|
}
|