RFID_Explorer.AntennaSenseThresholdEdit.AntennaSenseThresholdEdit C# (CSharp) Method

AntennaSenseThresholdEdit() public method

public AntennaSenseThresholdEdit ( LakeChabotReader reader, uint activeThresholdValue ) : System
reader LakeChabotReader
activeThresholdValue uint
return System
        public AntennaSenseThresholdEdit( LakeChabotReader reader, uint activeThresholdValue )
        {
            this.reader               = reader;
            this.activeThresholdValue = activeThresholdValue;

            InitializeComponent( );

            activeThreshold.Text    = activeThresholdValue.ToString( );
            activeThreshold.Enabled = false;

            newThreshold.Minimum = 0;
            newThreshold.Maximum = 0x000FFFFF;
            newThreshold.Value   = activeThresholdValue;
        }