Ejemplo n.º 1
0
        private void TargetPotentiallyFoundAt(DScanFinder.DScanGroup dScanGroup)
        {
            var textData = String.Format("\n\n{0} potentially found", _selectedItem);

            AppendTextLine(textData);

            LstRangeItems.Background = POTENTIALLY_FOUND_BRUSH;

            SetRangeItems(dScanGroup.Items);

            SoundPlayer.PlayScanPotentialSuccess();
        }
Ejemplo n.º 2
0
        private void ScanSuccess(DScanFinder.DScanGroup dScanGroup)
        {
            var textData = String.Format("\n\n{0} most likely found", _selectedItem);

            AppendTextLine(textData);

            LstRangeItems.Background = SUCCESS_BACKGROUND_BRUSH;
            LstRangeItems.FontWeight = FontWeights.Bold;
            SetRangeItems(dScanGroup.Items);

            SoundPlayer.PlayScanSuccess();
        }