c# - How to smoothly navigate to a different panorama item -


in panorama application, have added couple of situations user navigated panorama item. done in 1 sudden movement. there way can action more smoothly, form of transition? or of like?

this code worked me

slidetransition slidetransition = new slidetransition(); slidetransition.mode = slidetransitionmode.sliderightfadein; itransition transition = slidetransition.gettransition(panorama_main); transition.completed += delegate {     transition.stop(); }; panoramaitem pitem = (panoramaitem)panorama_main.items[3]; panorama_main.defaultitem = pitem;  transition.begin(); 

Comments

Popular posts from this blog

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -