Navigation between pages like in IE10 - windows-8

I'm developing metro-style app for Windows 8. Currently I use buttons with arrows for navigation in my app but I want to handle gestures (just like in IE for changing pages, from left to right). How I can achieve this?

If your application is not too complicated, is FlipView an option for you?
MSDN References:
http://msdn.microsoft.com/en-us/library/windows/apps/hh465425.aspx
http://msdn.microsoft.com/en-us/library/windows/apps/br211711.aspx

Related

Using Tabbed page inside a navigation page in Xamarin forms

I am relatively new to Xamarin and mobile development. Currently I am workin on a xamarin project, in which there is a situation where I need to bring a Tabbed page inside a Navigation page. Below is the image of page layout that I need to develop
In the Main Navigation page, left side should be content page and right side should be tabbed page with three contents.Is't doable in Xamarin forms?
No, You should create your own layout.
If you're making an iPad app only, using Master-Detail Page could be an option.
But for other devices, you can't use TabbedPage like that.

UWP Menu XAML Controls

I am trying to implement a layout like the one in the MSN News app on my app for Windows 10
I want to replicate a menu like the one that says "All, Top Stories, US" and such. I have tried ListBox, AppBar and CommandBar and nothing seems to resemble this layout. Which controller should I use?
Check out the Pivot control. You can find out what elements any UWP XAML apps are made of by debugging them with VS and using the Live Visual Tree view.

Titanium: Android back navigation via app icon in upper left corner

I have just started exploring Titanium.
I am looking for components/help to accomplish the standard Android sub-window back-navigation, where you have the app icon and back functionality in the upper left corner.
I checked the tutorials/SDK and kitchen sink project but don't seem to be able to find anything similar.
On their page with sample customer apps seems to be at least one app that demonstrates this type of navigation, which makes me think it should be available.
Any help or pointers would be much appreciated.
In our Android/iOS application, we use the standard iOS navigation, but on the Android side we built our own custom header view to implement our navigation. This view is added to the top of all other windows and/or main views.
We hooked the android:back button to trigger the navigation view's back feature as well, so we support both "standards".

Control AdDuplex ads appearing on my WinRT pp

I have a windows 8 app and I have integrated adduplex with it. Is there a way to control what size of ads are being served by adduplex on my app? Currently I see 300x250 which messes up my UI
Not sure if AdDuplex uses a WebView to present the ads, but if it doesn't then perhaps you could put it in a Viewbox to scale it down.
Got it, it uses the size property, example size="90x720" will do the trick.

how to get appbar in windows 8 metro applications using visual studio 2012?

I am developing a metro application using visual studio 2012. I am trying to get an AppBar in my metro application. How do I do that?
There are a LOT of samples in the MSDN Dev Center, http://code.msdn.microsoft.com/en-us/windowsapps. One of them is specifically an AppBar sample, and the description reads:
This sample demonstrates how to use the AppBar control to present
navigation, commands, and tools to users.
The app bar is hidden by default and appears when users swipe a finger
from the top or bottom edge of the screen. It covers the content of
the app and can be dismissed by the user with an edge swipe, or by
interacting with the app. This sample shows how to add an app bar,
customize the app bar, and control the app bar. Also, it shows how to
use sticky app bars and global app bars.
I think this will get you started.