summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core
AgeCommit message (Collapse)AuthorFilesLines
2016-05-25[Android] Implement the AppIndexProvider on non-AppCompact, fix KeyValues ↵Rui Marinho1-1/+11
on AppLinkEntry (#166) * [Android] Set AppIndexingProvider on non AppCompact activity * [Core] Fix AppLinkEntry KeyValues
2016-05-25Set InternalsVisibleTo CarouselView (#164)Rui Marinho1-0/+1
2016-04-26Carousel clean (#135)Jason Smith4-477/+0
CarouselView moving to preview repo
2016-04-26Prepare Preserve attribute usage for removal of InternalsVisibleTo (#121)E.Z. Hart5-24/+24
* Move PreserveAttribute to Internals to prep for removal of InternalsVisibleTo * Update docs
2016-04-25Multi style classes (#134)Stephane Delcroix4-34/+58
* [C] StyleClass is IList<string> * fix docs * this might be required
2016-04-25Make core Ticker abstract and public (#116)E.Z. Hart5-34/+11
* Make core Ticker abstract and public Make the core Ticker abstract and public so it can be inherited by platform implementations; remove now-unused parts of original Ticker; add CreateTicker to IPlatformServices; remove unused CreateTimer methods from IPlatformServices * Add docs for Ticker * Remove unnecessary Ticker.Default set * Move Ticker into Internals * Update Ticker docs * Remove old Ticker docs * Remove commented code
2016-04-25Remove ToolBar from Core; Remove ToolBar renderers and unit tests (#124)E.Z. Hart2-47/+0
2016-04-25Prep WebView and renderers for removal of InternalsVisibleTo (#120)E.Z. Hart7-9/+24
* Create custom event args class for script eval requests Make IWebViewRenderer public * Add IWebViewRenderer docs * Add EvalRequested docs * Move EvalRequested to Internals IWebViewRenderer -> IWebViewDelegate * Add docs
2016-04-24Evolve feature branch (#117)Jason Smith8-6/+144
* Initial import of evolve features * [Android] Add Xamarin.Forms.Platform.Android.AppLinks project * [iOS] Fix issues with c# 6 features on iOS AppLinks * Added naive stanza to update-docs-windows.bat to produce Pages docs. Not tested. (#69) * Update packages * Add AppLinks android nuspec and fix linker issues * Fix build * Fix nusepc * Fix nuspec * Update android support nugets to 23.2.1 * Update Xamarin.UITest * Add CardView * [iOS] Fix app link for CoreSpotlight * [Android] Update AppLinks android support libs * Add Newtonsoft.Json dependency to nuspec * Fix NRE when setting ControlTemplate to null * Move to ModernHttpClient for download * Try fix build * Preserve android app links * Fix margin issue * General coding and simple fixes
2016-04-23Fix margin issue (#130)Samantha Houts1-5/+13
2016-04-19Add TextColor Property to Picker, TimePicker, DatePicker (#84)E.Z. Hart3-8/+32
* Add TextColor property to TimePicker Add TextColor page to TimePicker gallery Add TimePicker color toggling to color toggle test page Split color toggle tests up among tabs * Implement TimePicker.TextColor in iOS * Implement TimePicker.TextColor for WinRT tablet * Add IsEnabled=false tests to DefaultColorToggleTest Button and TimePicker Consolidate ColorStates array Fix IsEnabled changing color bug on iOS * Implement TimePicker.TextColor for WP8 * Add TextColor property to DatePicker Add DatePicker section to DefaultColorToggleTest Impement DatePicker.TextColor for WP8 * Implement DatePicker.TextColor for WinRT/UWP/Windows Phone 8.1 * Implement DatePicker.TextColor for iOS * Add TextColor to DatePicker Gallery Page * Implement DatePicker.TextColor for Android * Add Picker Gallery page for TextColor Implement Picker.TextColor on Android Consolidate TextColor management for Button, Picker, DatePicker, TimePicker Implement * Add untracked TextColorSwitcher Implement Picker.TextColor in iOS * Implement Picker.TextColor in WinRT/UWP/Windows Phone 8.1 Remove Pioker Loaded handlers in Dispose * Implement Picker.TextColor in WP8 * Removed unused field Update ignored warnings * Update docs * Use nameof() for BindableProperties * Cleanup * Fix custom renderer crashes for classes using TextColorSwitcher * Correct property name references * Fix typo and 'if' formatting * Add missing else
2016-04-18Whitespace fixes (#110)kingces953-31/+64
2016-04-18CarouselView Fixes (#101)kingces953-26/+11
* Fix CarouselView.Item * CarouselView formatting * Move ItemsView.Count to IItemsViewController * Remove dead code: CarouselView.IndexOf * CarouselView re-layout subviews on resize. * Add ItemTemplate to resources.xaml on UWP * Docs
2016-04-18Make sure RD indexer works with merged dictionaryJason Smith1-1/+8
2016-04-18BarBackgroundColor and BarTextColor on TabbedPage (#96)Samantha Houts1-0/+28
* [Core] Add properties to TabbedPage * [Controls] Add properties to test page * [iOS] Added BarBackgroundColor & BarTextColor to TabbedPage * [A] Added BarBackgroundColor & BarTextColor to TabbedPage * [UWP] Added BarBackgroundColor & BarTextColor to TabbedPage * [WinRT] Format file * [WinRT] Added BarBackgroundColor & BarTextColor to TabbedPage * [Docs] Updated docs
2016-04-18[C] Allow implicit styles and DynamicResources in shared RD (#104)Stephane Delcroix1-3/+7
2016-04-18[C] Allow Multiple Shared RD. (#103)Stephane Delcroix1-2/+9
2016-04-17Merged ResourceDictionary (#97)Stephane Delcroix1-2/+27
* [X] Support Merged RD * [X] Support RD as xaml roots * [XamlC] I have no idea how that used to work before * [C] Remove debugging statements * fix docs
2016-04-12Make sure pragma warning restores only restore what they are supposed toJason Smith2-11/+11
2016-04-12Mop up enabling warnings as errors (#78)kingces957-3/+36
2016-04-12[Core] Can bind properties in BindableObjects added to static resources in ↵Samantha Houts2-1/+19
XAML (#58) Resources that are `BindableObject`s will inherit the `Parent`'s `BindingContext` unless they are `Element`s that have non-null `Parent`s.
2016-04-08Automatically marshal all AnimationExtensions calls onto UI thread (#48)E.Z. Hart1-61/+94
2016-04-07[A, iOS] CarouselView Bug Fixes (#49)kingces951-4/+19
* CarouselView programatic scrolling fixes; swipe back fixes * Make iOS CarouselView events consistant with Android * bump swipe distance; add Screenshot on Exception * Formatting. No logical change. * Comment out [Test] on UITest and fix TestCloud failures later.
2016-04-06[C] Cast to ICommand instead of Command inside SearchBarJason Smith1-2/+2
2016-04-06Warnings as Errors in product projectskingces951-0/+2
2016-04-05[iOS] Fix WeakNotifyCollectionChanged on CarouselViewRui Marinho1-14/+17
Make some changes on WeakNotifyCollectionChanged to make it work ok in IOS, following the ListProxy approach.
2016-04-04Merge pull request #39 from xamarin/unformatkingces951-32/+43
Unformat CarouselViewRenderer, recombine files; no code changes
2016-04-01Unformat CarouselViewRenderer, recombine files; no code changesChris King1-32/+43
/*privat*/ -> #region Unformat CarouselView.cs More unformat work Remove offending /*privates*/
2016-03-31Merge pull request #11 from xamarin/fix-bugzilla27417Samantha Houts1-0/+80
Add options for specifying layout of button text/image content
2016-03-31Merge pull request #32 from xamarin/fix-bugzilla39378Samantha Houts1-0/+11
[Controls,Core]Allow well known type conversions on the binding system
2016-03-30Add options for specifying layout of button text/image contentE.Z. Hart1-0/+80
Also make the layout and layout defaults consistent across platforms
2016-03-29Make spacing in lock statement consistent with code styleE.Z. Hart5-18/+18
2016-03-29[Controls,Core]Allow well known type conversions on the binding systemRui Marinho1-0/+11
2016-03-29Merge pull request #27 from xamarin/fix-bugzilla39566Rui Marinho1-1/+1
Ignore hidden fields when reflecting for FieldInfo's.
2016-03-28Fix for bugzilla 39566Chris King1-1/+1
2016-03-27[C]Remove view from previous parent when added to new parent layoutJason Smith1-0/+3
Technically this could be considered a breaking change if someone was depending on the old behavior, however the old behavior resulted in layouts that were not predictable to the user. So while yes someone could have built something that works, it would have been via trial and error and generally breaking the rule of one parent to each view. Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=39509
2016-03-22Initial importJason Smith349-0/+27299