AdvancedLauncher.UI.Pages.GalleryViewModel.UnLoadData C# (CSharp) Method

UnLoadData() public method

public UnLoadData ( ) : void
return void
        public void UnLoadData()
        {
            this.IsDataLoaded = false;
            this.Items.Clear();
        }

Usage Example

Example #1
0
 protected override void OnProfileChanged(object sender, BaseEventArgs e)
 {
     GalleryModel.UnLoadData();
     IsGalleryInitialized = false;
     if (IsPageVisible)
     {
         OnShow();
     }
 }