Esempio n. 1
0
        protected void BroadcastChange(string parseName, WatcherChangeTypesEx changeType)
        {
            try
            {
                if (CurrentBrowserViewModel != null)
                {
                    CurrentBrowserViewModel.BroadcastChange(parseName, changeType);
                }

                if (NavigationViewModel != null)
                {
                    NavigationViewModel.BroadcastChange(parseName, changeType);
                }
            }
            catch (Exception ex)
            {
                Debug.WriteLine(ex.Message);
            }
        }