SetBinding Image.IsVisibleProperty isnot working Need help here
Here's my viewcell class ` class InnerHeaderView : ViewCell { Label lblSKU; Label lblProductDate; Label lblWaveQty; Label lblUOM; Label lblCount; Label lblReason; Image imgCheck; public...
View ArticleScrollview not working with AbsoluteLayout
Hi, Code like the following within the content of a detail page returns the exact same things with or without the scrollview: i.e a non-scrollable page. <ScrollView> <AbsoluteLayout>...
View ArticleForms.Labs ExtendedLabel color on iOS
Setting the font color of an extended label doesn't seem to have any effect in iOS. Anyone else experiencing this, and if so, is there a workaround? Running Labs 1.2 with the latest stable version of...
View ArticleGMail Pull-down menu
Hello, I want to know how to implement the pull-down menu like GMail in iOS with XMAL. Please advise.
View ArticleTIP: NavigationPage.BackButtonTitleProperty
Putting this baby in my base CustomPage constructor saved me some rendering work - and a whole lot of UI clutter. Thx Xamarin this.SetValue (NavigationPage.BackButtonTitleProperty, "");
View ArticleHow to use Rating
is possible in xamarin forms use http://developer.android.com/reference/android/widget/RatingBar.html ?
View ArticleTextCell's Font property
Is there a way to specify the font for a TextCell? I've read that using a TextCell is more efficient than using a Label inside a ViewCell but I do need to modify the font. Thanks in advanced.
View ArticleCombine binding parameters
Afternoon Gents, I see that Xamarin forms does not support binding to x:ElementName. It only supports binding of the x:Reference property. Is this correct? If so, this poses a problem since I need to...
View ArticleXAML Bind One Label to Multiple Model Properties
I'm building a DataTemplate for use in a ListView and I'd like to have a label that is bound to multiple properties on the model. public class SomeObject { public string Name { get; set; } public...
View ArticleWebview and Button in same ContentPage (button only showing :( )
I have a webview in a ContentPage. Now, I want a button below it. Anyone know how do I do that, please? I have the following code, and it's not working. I only get the button with no webview. I've...
View ArticleAllow Rotation in one page only
Hi, I have to build an application that need to be in Portait in all page except in one page where I want allow rotation. I understand that's not possible using only Forms and I need to use custom...
View ArticleGradient Background on Android
I have a PageRenderer public class GradientContentPageRenderer : PageRenderer { protected override void OnElementChanged (ElementChangedEventArgs<Page> e) { base.OnElementChanged (e); if...
View ArticleBest way of navigating between a log in/activation process and the main app
This is not something new but I'm trying to find a good/better solution/design when using Forms for all three platforms (iOS, Android and WinPhone) than what I've got. Plus I'd like to know how...
View ArticleScrollable StackLayout?
Our form is in a StackLayout(Vertical) Is there a way to enable scrolling so that off screen form controls can be scrolled to on smaller devices?
View ArticleUnified Announcement and MVVMCross
I am new to MVVMCross and ~6 Mos with Xamarin… From the Xamarin blog post today : http://blog.xamarin.com/unified-api-and-64-bit-support-complete/ What does that mean as far as MVVMCross is concerned?...
View ArticleMissing an assembly reference
What reference i want to add Xamarin.Forms Error CS0234: The type or namespace name Init' does not exist in the namespaceXamarin.Forms'. Are you missing an assembly reference?
View ArticleUIStatusBarStyle does not work in Xamarin.Forms 1.2.3.6257
I want to set status bar style to UIStatusBarStyle.LightContent. So I added code UIApplication.SharedApplication.SetStatusBarStyle(UIStatusBarStyle.LightContent, false); to...
View ArticleAdding Child Pages to a Tabbed Page
Hi, I've been trying to add child pages to a Tabbed page using the 2nd approach shown over here: http://iosapi.xamarin.com/?link=T:Xamarin.Forms.TabbedPage However I'm not able to do so as the Children...
View ArticleXamarin Forms with a NavigationPage repeat view at bottom of screen on Nexus 5
Hi there. When I test some of the Xamarin forms samples and my own app on my Nexus 5, the view stops before the bottom of the screen and then starts to repeat itself. Code: using System; using...
View ArticleScrollView inside StackLayout not visible.
I am using following code. I am executing the app in windows phone 8. In output screen I can see only titleLable(Label) and nextButton (Button). ScrollView is not visible nor any component inside it....
View Article