Databinding to an other Control/View?
Hi, Does anybody knows if it's possible in code to bind, for example, the Text property of a Label to the Value property of the Stepper control ? Thanks
View ArticlePicker in tableview causes viewcells to shrink
Sample: return new ContentPage { Content = new TableView(new TableRoot { new TableSection("Textcell") {new TextCell {Text = "Text"}}, new TableSection("Viewcell with picker") { new ViewCell { View =...
View ArticleIs there a way to set the next responder of an Entry, as we set the...
I want to change the keyboard button text to Next and move to next Entry
View ArticleThreading in Xamarin.Forms
I see I can call Device.BeginInvokeOnMainThread, but what about starting a background thread in Xamarin.Forms? Possible to do in the shared code?
View ArticleCustom Properties on Children (XAML)
Hi! I would like to create my own children properties for a custom view, like RelativeLayout does. How this work? Any tip? <RelativeLayout> <BoxView Color="Red" WidthRequest="200"...
View ArticleHow to call ProgressBar.ProgressTo form ViewModel Command
I have a progress bar but I'd like to animate it. I want to call progressTo but Im not sure how this is done when currently I bind the ProgressProperty to the view model. How can my command in my...
View ArticleAndroid API Level 10
Hello, Just curious, but am I to understand that Xamarin Forms only supports 4.0+ Android Devices? Would't that be problematic since 13.5% of android devices are still running Gingerbread (2.3.3)? Is...
View ArticleUpdate Refresh UI on click event.
Hi I have a content page on which I have a button and an activityindicator. Now I want to simply hide the button and show indicator when the button is clicked. Now it doesn't update the UI as soon as...
View ArticlePopModalAsync .... is it broken ????
Hi all, It appears as if PopModalAsync is broken in this case I am using a TabbedPage as my apps first/main page (say PrimaryTabbedPage) I push and pop a modal Splash Screen here . Upon some user...
View ArticleIs there anywhere I can browse the source?
I've been diving into Xamarin.Forms a bit, but there isn't too much documentation out there beyond the few pages on the main documentation site and some of the class libraries. In particular I'm...
View ArticleWhat is the lowest compatibility settings we can use?
I'm just wondering what the lowest supported OS settings are for Xamarin.Forms?
View ArticleWeb Page offline show
Hi, How can i do webpage show offline mode in Xamarin.forms.webpage I guess, I have to do render webpage for each platform.But how? These are my sample code: ` public class WebAppPage : BasePage {...
View ArticleHow to customize the tabbedPage tab's title ?
Hello I have a tabbed page that has number of tabs, each tab contains different content page, however the tab's title is reflecting the content page's title. and I would like it to be an image. For...
View ArticleError executing task XamlG
"Error executing task XamlG: Attribute name and qualified name must be identical." I'm writing my views in XAML. I have just a handful of ContentView controls nested into a master page setup....
View ArticleDesign a single page using both Xamarin.Forms and Native
Hi, Is it possible to use both Xamarin.forms components and native components into a same singe page ? Suppose i am creating a page using Xamarin.forms where i have added some components from...
View ArticleAssigning a List of Children to a StackLayout
Assume that child1 and child2 are well formed Views. The following compiles: var stackLayout = new StackLayout { Children = { child1, child2 } }; But the following does not compile, saying I am not...
View ArticleAny update on Gestures?
I am getting a lot of pressure from my business team for swipe and long touch gestures. I belive I read somewhere that GestureRecognizer is not extendable? If this is correct is there any update about...
View ArticleWebView not showing some pages
A little background: I have an OAuth2 flow for a website (visual studio online) implemented for WP and now I'm porting the thing to x.forms. Obviously, the WP version uses WebBrowser while x.forms uses...
View ArticleLabel - text align right
Hi, I´m beginner. I have this code, but label with price is´nt on the right. ` public class DishCell: ViewCell { public static int count = 1; public DishCell () { var menuLayout = CreateMenuLayout();...
View ArticleHeader - listView
Hi, I´m beginner. I would like how do header by listView, I tried GroupHeaderTemplate and alone Label. How do I rows another color (first row white, second gray, third row white again..). Thanks
View Article