BorderlessGaming.Forms.MainWindow.RefreshFavoritesList C# (CSharp) 메소드

RefreshFavoritesList() 개인적인 메소드

private RefreshFavoritesList ( BorderlessGaming.Common.Favorites fav = null ) : void
fav BorderlessGaming.Common.Favorites
리턴 void
        private void RefreshFavoritesList(Favorites.Favorite fav = null)
        {
			//refreshing is done through observables so this method just readds the favorite
			//to make it look like it updated and because i dont want to change all that code
			controller.Favorites.Add(fav);
        }
MainWindow