Ejemplo n.º 1
0
        public void DoClearDisplay()
        {
            RadioLog.Clear();
            EmergencyRadioLog.Clear();
            RollCallService.ClearRollCallParticipants();

            //clear units
            //start new logging session
        }
Ejemplo n.º 2
0
        public RollCallView(ViewModels.MainViewModel mainViewModel)
        {
            InitializeComponent();

            DataContext = mainViewModel;

            this.Closed += (s, e) =>
            {
                RollCallService.RollCallActive = false;
            };

            RollCallService.RollCallActive = true;

            lbGood.ItemsSource    = RollCallService.GoodList;
            lbWaiting.ItemsSource = RollCallService.WaitingList;

            RollCallService.DoRestartRollCall();
        }