Xamarin.Forms.Windows 1.4.3.6356-pre1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of Xamarin.Forms.Windows.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Xamarin.Forms.Windows --version 1.4.3.6356-pre1
NuGet\Install-Package Xamarin.Forms.Windows -Version 1.4.3.6356-pre1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Xamarin.Forms.Windows" Version="1.4.3.6356-pre1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Xamarin.Forms.Windows --version 1.4.3.6356-pre1
#r "nuget: Xamarin.Forms.Windows, 1.4.3.6356-pre1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Xamarin.Forms.Windows as a Cake Addin
#addin nuget:?package=Xamarin.Forms.Windows&version=1.4.3.6356-pre1&prerelease

// Install Xamarin.Forms.Windows as a Cake Tool
#tool nuget:?package=Xamarin.Forms.Windows&version=1.4.3.6356-pre1&prerelease

Build native UIs for iOS, Android, and Windows Phone from a single, shared C# codebase

Product Compatible and additional computed target framework versions.
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Windows Phone wpa81 is compatible. 
Windows Store win81 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Xamarin.Forms.Windows:

Package Downloads
MobiliTips.MvxPlugins.MvxForms

MvvmCross plugin to work with Xamarin Forms on iOS, Android, WinPhone SL, WinStore 8.1 & WinPhone 8.1 projects. Install this plugin on a blank MvvmCross project (each platform) without any customization so that you can click "Yes to all" on overriding alert message. If your project is not a blank one, click "No to all" and see sample on GitHub to implement it manually. Tuto available on my blog http://mobilitips.wordpress.com Release notes on nuget.org Inspired by FormsPresenters plugin with some adaptations.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Xamarin.Forms.Windows:

Repository Stars
nishanil/Xamarin.Forms-Samples
Xamarin.Forms Samples
Version Downloads Last updated
1.4.3.6358-pre2 2,287 4/24/2015
1.4.3.6356-pre1 1,386 4/21/2015
1.4.2.6355 9,072 4/21/2015
1.4.2.6353-pre2 1,266 3/31/2015
1.4.2.6350-pre1 1,104 3/30/2015
1.4.1.6349 1,488 3/30/2015
1.4.1.6347-pre2 1,895 3/19/2015

## Enhancements ##

### XamlC (Compiled XAML) ###

XAML can now be optionally compiled directly into IL. This removes some of the load and instantiation time for Elements defined in XAML. Additionally this means the .xaml file is no longer included in the final assembly, reducing file size. This capability is disabled by default to ensure backwards compatibility, however it can be turned on at both the type and the assembly level. To enable XamlC, add the `XamlCompilation` attribute to any class or assembly you wish to have compiled to IL.

At the assembly level:

```csharp
[assembly: XamlCompilation (XamlCompilationOptions.Compile)]
```

or at the class level:

```csharp
[XamlCompilation (XamlCompilationOptions.Compile)]
public class MyCustomView : ContentView
{ ... }
```

This feature is very much still in beta, it works with some large test projects using XAML extensively, however there are certainly still bugs remaining to be found and discovered. Please note that using XamlC may interfere with your debugger, it is recommended to disable XamlC when needed as the mdp/pdb file will not correctly represent the new IL.

### Other Enhancements ###

- [WinRT] Now properly supports Color.Accent
- [WinRT] Assorted performance and correctness fixes
- [WinRT] PageRenderer.OnElementChanged is now virtual
- [Android] Properly support `DatePicker.MinimumDate` and `DatePicker.MaximumDate`
- [Xaml] Speed up parsing/understand of predefined colors by removing reflection
- [Docs] Add documentation for missing summaries
- [Core] Binding now supports binding to dynamic objects, such a json objects.

## Bug Fixes ##

- [Bug 28364](https://bugzilla.xamarin.com/show_bug.cgi?id=28364) - Listview.FooterTemplate cause NullReferenceException
- [Bug 28345](https://bugzilla.xamarin.com/show_bug.cgi?id=28345) - Android crash on listview press hold and swipe
- [Bug 28191](https://bugzilla.xamarin.com/show_bug.cgi?id=28191) - Java.Lang.NullPointerException in TabbedPage
- [Bug 28119](https://bugzilla.xamarin.com/show_bug.cgi?id=28119) - Disabling Editor in iOS does not disable entry of text
- [Bug 27234](https://bugzilla.xamarin.com/show_bug.cgi?id=27234) - ViewCell background conflicts with ListView Semi-Transparent and Transparent backgrounds
- [Bug 28242](https://bugzilla.xamarin.com/show_bug.cgi?id=28242) - CarouselPage Disappearing event does not fire on Android
- [Bug 27951](https://bugzilla.xamarin.com/show_bug.cgi?id=27951) - Sample 'WorkingWithListviewNative' throw Exception on Xam.Android project.
- [Bug 27976](https://bugzilla.xamarin.com/show_bug.cgi?id=27976) - [Android] MasterDetail NavigationDrawer Does Not Hide On DoubleTap of Item
- [Bug 28424](https://bugzilla.xamarin.com/show_bug.cgi?id=28424) - [Android][WinPhone] When setting the minimum and maximum date for a date picker, only allow valid dates to be seen/selected from the DatePicker dialog.
- [Bug 27766](https://bugzilla.xamarin.com/show_bug.cgi?id=27766) - On Android, button background is not updated when color changes
- [Bug 27689](https://bugzilla.xamarin.com/show_bug.cgi?id=27689) - GroupHeaderCells disappear when item is removed from a group in ListView (iOS only)
- [Bug 29158](https://bugzilla.xamarin.com/show_bug.cgi?id=29158) - XF for WP8.1RT - BeginInvokeOnMainThread generates NullReferenceException
- [Bug 28390](https://bugzilla.xamarin.com/show_bug.cgi?id=28390) - ListView - jump list always shows on WPhone, even without GroupShortNameBinding


## Other Fixes ##

- [Core] Fix corner case where PushModalAsync could end up pushing pages in the wrong order.
- [WinRT] Page.Disappearing now works correctly
- [WinRT] NavigationPage.Padding now respected correctly
- [WinRT] Various fixes for Page.IsBusy
- [WinRT] TabbedPage no correctly lays out children
- [Android] ScrollTo no longer off by one in ListView using Headers
- [Android] Fix crash when using non-existent image as the Icon for a ToolbarIcon
- [Android] Add some missing warning messages
- [Android] Fix crash with malformed ViewCells
- [iOS] Default Keyboard now matches platform default
- [iOS] Fix crash when dismissing popover from ContextActions