Forms2Native Example for WinPhone 8.1 Xaml (WinRT)
Hi. I'm trying to implement the same pattern in Forms2Native example for WinPhone Silverlight that in the example... But. There is no Childern property. in the example: `public class...
View ArticleWebview broken
I have a webview that is bound to an HTML snippet snippet: <h1>Hello World!</h1> <WebView> <WebView.Source> <HtmlWebViewSource Html="{Binding Html}" />...
View ArticleChanging the StackLayout.IsEnabled property doesn't have any effect...
In WPF, we can set StackPanel.IsEnabled = false and it will set IsEnabled = false to all the controls contained in the panel. I tried to do the same with the StackLayout, but it doesn't make any...
View ArticleBest Practice on Application Settings using Xamarin.Forms
Hello! I would like to ask the community for some advice regarding the creation of a “Settings” view. The goal is to provide options to a user and store them as application settings. I’m using Xamarin...
View ArticleXamarin still use old version of my code
Hello, Today i faced a problem that i can't really understand. I created a clickable list with multiple StackLayout and GestureRecognizers. One of them open a new ContentPage with some elements in it....
View ArticleListView in masterpage: scrollposition sometimes off on iPhone 6
Hello All, I've encountered a strange bug. So far we only noticed on a iPhone 6. I have a listview inside the masterpage, above the listview is an stacklayout to emulate a header (this one includes the...
View ArticleHow I will get intellisense in Xaml files?
I am currently using visual studio 2015 with xamarin. How I will get intellisense in Xaml files for Xamarin Forms?
View ArticleNamespaces unknown after xaml page code generation when using portable library
Has anyone else been experiencing issues with Unkown namespace errors or missing assembly reference errors after running the customtool to generate c# code for the Xamarin xaml pages? I'm using visual...
View ArticleGlobal Pan/Swipe detection
Hello, I've built a single page app, with some absolute layout trickery, so I don't use the default navigation and master/detail stuff. Now i want to add a horizontal swipe detection to show and hide...
View ArticleListView reuse Cell?
So I was fooling around with the TodoMVVM sample ( https://github.com/conceptdev/xamarin-forms-samples/tree/master/TodoMvvm) and I noticed in Instruments that when I scroll the list the number of...
View ArticlePull to Refresh not working on Windows Phone 8.1
Hi, I've implemented PullToRefresh as described here Its working fine on Android, but not on WindowsPhone8.1 ` public class RefreshTest : ContentPage { public RefreshTest() { Title = "Refresh Test"; }...
View ArticleHybridWebView in Windows App
I am trying to use the XLabs HybridWebView and in my Windows App Im trying to set the IOC, `private void SetIoc() { var resolverContainer = new SimpleContainer();...
View Articleimplement animated Drop down menu.
Hi how can implement animated drop down menu in xmarin form? i would like to implement drop down menu similar to following link http://bit.ly/1EeqXkx
View ArticleHow to intersect unhandled exception (App level)?
Hi there Is there any way to hook to an event when the app unhandled exception occurs? Thanks.
View ArticleChange ToolbarItem.Name color in Android?
After adding the simplest of toolbars to a NavigationPage, is there a way to style it in Android? ToolbarItems.Add(new ToolbarItem { Name = "Done", Command = new Command(() =>...
View ArticleTimer doesn't contain in System.Threading
I used System.Threading.Timer in Xamarin.Android. How I can use the same class in Xamarin.Forms? (I want to transfer my project from Xamarin.Android in Xamarin.Forms)
View ArticleUsing x:Name on custom controls does not work. Is this correct?
I have the page: <?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"...
View ArticleNavigating to a tabbed page
When navigating from a content page to the tabbed page using pushasync...only the content first tab is visible the rest of the tabs are not visible? But if i use pushModalasync all tabs are...
View ArticleCamera access with PCL
I've been using PCL project for a while and I can't get the camera to work. I've gone through online Xamarin Docs and some samples like https://github.com/XLabs/Xamarin-Forms-Labs/wiki/Camera but no...
View ArticleBug : Switching IsVisible on a button does not redraw the button
Hi, I have found something weird, when switching IsVisibility of several button embbedded in a stacklayout, using a viewModel (Commands and bindings) the buttons does not always redraws themself (on...
View Article