How to Populate SQLite Db table in Grid view in Xamarin.Forms
Hi, i am new to Xamarin .Forms, i want to show DB Table records in grid view like in attached file, so how it is possible and which layout or view can i choose to achieve this type of view.
View ArticleCreating a custom control in a separate project and using it in another one –...
I tested a way of creating a XAML-defined custom compound control in a separate project and using it in another one. I created a Xamarin.Forms (template “Blank App (Xamarin.Forms Portable)”) solution...
View ArticleRemove space between ListView rows
Hi, I'd like to create a ListView with custom cells and without space between the cells. Unfortunately there is still a 1px space between the cells even if I set SeparatorVisibility to None:...
View ArticleCarouselPage doesn't display Title text
Hi, I'm using a CarouselPage and I've set the Title property in the xaml file but it isn't displayed. If I set the Title property in the .cs file then it is displayed has anyone else seen this? I'm...
View ArticleViewModel instanciating multiple times
this was a duplicate - find original post here https://forums.xamarin.com/discussion/49257/view-model-instantiating-multiple-times
View ArticleVideo story line or thumbnails
Hi I have no idea what's the official name for it, but I'm trying to get a list of images from a video so I can see them and scroll through them. This is for example what we see when we edit a video on...
View ArticleHow to scale the splashscreen on Windows?
In my Windows project, I have included 3 splashscreen images at the sizes specified in the Visual Assets tab of the properties in Visual Studio (1116 x 540, 860 x 420, and 620 x 300). When I run the...
View ArticleAdding Images to a Grid Layout
When looking at Images, is there anything wrong with this: grid.Children.Add(new Image { Aspect = Aspect.AspectFit, Source = "logo.png", }, 0, 1, 0, 1); // Left, Second element I have put logo.png and...
View ArticleDependancyService with BroadcastReceiver
Hi, I can't figure out how PCL project can be aware of returning actions, when IntentFilter is set in a Android (for example) Dependancy. In my case, I want to discover all Bluetooth devices (with...
View ArticleHow to hide navigation bar on Android Lollipop?
On earlier Android versions, up to 4.4 the following code in ContentPage subclass works perfectly: // Hide native navigation bar NavigationPage.SetHasNavigationBar(this, false); But on Android 5.0+...
View ArticleHow to implement the Horizontal ListView using Xamarin Forms?
I want to implement the listview with horizontal scroll in Xamarin forms. Xamarin forms provides Listview but it supports only vertical orientation(default), how can i implement the listview...
View ArticleNested Controls in Absolute Layout
I'd like to nest a frame inside another control, while using AbsoluteLayout. However, it seems that the control always takes the layout options of the parent. Am I doing something incorrectly, or is...
View ArticleOpen new Page
This is probably a really easy answer, but how do I open up a ContentPage from an existing ContentPage (from button click event) without using NavigationPage?
View ArticleTired of the situation
Hello, First let me tell you I'm a huge fan of the Xamarin.Forms concept and I love the Xamarin platform. But unfortunately, as a lot of other unlucky Xamarin.Forms developers, i begin to get tired of...
View ArticleWebView Zoom
Hi there, How can I enable pinch-and-zoom inside a WebView in Xamarin.Forms? It was easy enough using UIWebView in iOS. Thanks. Mike
View ArticleCustomise MasterDetailPage cells
Hello everybody, I'm working on customize the background and textcolor of an item selected in the menu in a masterDetailPage and I'm running out of solutions. I want to change the text color of the...
View ArticleHow to instantiate a Xamarin.Mobile.MediaPicker from Xamarin Forms ContentPage
I'm working on a proof of concept with Xamarin Forms and need some help with the following issue. I need to select an image from the photo gallery and it appears that I can't do it with a Xamarin Forms...
View ArticleVisual Design of MasterDetailPage
I'm noticing that on iOS the MasterDetailPage looks different than I'd expect on small form factor. It appears that the page I've set to be the Detail hangs over a bit on the right hand side of the...
View Article[iOS] How can I hide navigation bar while using Xamarin.Forms?
I tried the following but it didn't work: // In page protected override void OnAppearing () { base.OnAppearing (); DependencyService.Get<INavigationBarToggler> ().HideNavigation (this); } Then in...
View Article