protected virtual void onShow(DeviceControlEventArgs e)
        {
            EventHandler <DeviceControlEventArgs> handler = OnShow;

            handler?.Invoke(this, e);
        }
        protected virtual void onValidate(DeviceControlEventArgs e)
        {
            EventHandler <DeviceControlEventArgs> handler = OnValidate;

            handler?.Invoke(this, e);
        }