javitosanchez

Results 14 comments of javitosanchez

Do you mean that SemanticZoom is not working when try to zoom in/out with your fingers gesture? If so, you should use the property `ScrollViewer.ZoomMode="Enabled"`. If not, could you elaborate...

Please, review this thread: #48.

This is the default behaviour for this control. Repeats the items in a carousel way. If there is only on item it's been repeated.

Right now you can control your ActionsCommandBar items visibility with the canExecute delegate of the action item Command. ``` if (button.Command?.CanExecute(button?.CommandParameter) == true) { button.Visibility = Visibility.Visible; } else {...