Populate() public method

public Populate ( MedicalScannerBoundUserInterfaceState state ) : void
state MedicalScannerBoundUserInterfaceState
return void
Exemplo n.º 1
0
        protected override void UpdateState(BoundUserInterfaceState state)
        {
            base.UpdateState(state);

            if (state is not MedicalScannerBoundUserInterfaceState cast)
            {
                return;
            }

            _window?.Populate(cast);
        }
        protected override void UpdateState(BoundUserInterfaceState state)
        {
            base.UpdateState(state);

            _window?.Populate((MedicalScannerBoundUserInterfaceState)state);
        }