ATMLCommonLibrary.controls.control.driver.ControlDriverControl.DataToControls C# (CSharp) Method

DataToControls() protected method

protected DataToControls ( ) : void
return void
        protected override void DataToControls()
        {
            base.DataToControls();
            var driver = _versionIdentifier as HardwareItemDescriptionControlDriver;
            if (driver != null)
            {
                controlDriverManufacturerControl.ManufacturerData = driver.Manufacturer;
                controlDriverDependenciesControl.Dependencies = driver.Dependencies;
                controlDriverPlatformControl.Platform = driver.Platform;
                controlDriverSelectionControl.DriverSelect = driver.Type;
            }
        }