Exemplo n.º 1
0
        public DetailedDeviceInfoViewModel()
        {
            _deviceInfoRetriever = new DeviceInfoRetriever();

            RetrieveInfoCommand = new DelegateCommand(RetrieveInfoExecute);

            // try to retrieve info on startup
            RetrieveInfoExecute();
        }
Exemplo n.º 2
0
        public MainDeviceInfoViewModel()
        {
            _deviceInfoRetriever = new DeviceInfoRetriever();
            _mainInfoExtractor   = new MainInfoExtractor(_deviceInfoRetriever);

            RetrieveInfoCommand = new DelegateCommand(RetrieveInfoExecute);

            // try to retrieve info on startup
            RetrieveInfoExecute();
        }