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

c++ - Creating new partition disk winapi -

Android Prevent Bluetooth Pairing Dialog -

VBA function to include CDATA -