Exemplo n.º 1
0
        public ProgressScreen(FindingPhotosStage stage)
            : this()
        {
            _stage = stage;

            _progressBar.Minimum = 0;
            _progressBar.Maximum = (double)ExecutionEngine.Config.SearchProcessDuration.Value / (double)Constants.FindingPhotosTimerInterval + 1;
        }
        public SelectFoldersScreen(FindingPhotosStage stage)
            : this()
        {
            _findingPhotosStage = stage;
            if (ExecutionEngine.Config.IsBluetoothEnabled())
            {
                _prevButton.Visibility = Visibility.Visible;
            }
            else
            {
                _prevButton.Visibility = Visibility.Collapsed;
            }

            _folderTree.Items.Clear();
        }
Exemplo n.º 3
0
 public SelectDeviceScreen(FindingPhotosStage stage)
     : this()
 {
     _findingPhotosStage            = stage;
     _storageDeviceButton.IsChecked = true;
 }
 public BluetoothLoadScreen(FindingPhotosStage stage)
     : this()
 {
     _findingPhotosStage = stage;
 }