summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT
AgeCommit message (Collapse)AuthorFilesLines
2017-10-23Make WinRT/UWP platform classes more maintainable (#652)E.Z. Hart1-1/+1
* Split Platform.cs into partial classes * Split the NavigationPageRenderer into partial classes for easier maintenance * Simplify GetCommandBarAsync, remove unneeded comments * Correct broken GetCommandBarAsync method * Fix OSX build
2017-10-23[UWP] Controls are ignoring their rendering routines. (#1089)BradChase20111-3/+1
2017-10-23Fixes Bug 58987 (#1121)Jon Goldberger1-1/+1
2017-10-23[UWP] Prevent crash when using DateTime.MinValue (#1056)Jimmy Garrido1-2/+14
2017-10-23[UWP] Adjust setting of Slider's BackgroundColor (#1113)Paul DiPietro1-0/+16
2017-10-18Stop forcing FormsTextBox content to ForegroundFocusBrush on UWP (#1206)E.Z. Hart1-8/+32
2017-10-18[UWP] Inherit from Panel on WrapperControl (#1204)Paul DiPietro1-1/+1
* [UWP] Inherit from Panel on WrapperControl * Fix typo
2017-09-26Revert "[UWP] Use ItemClick to re-enable use of enter key for selection on ↵Samantha Houts1-10/+38
ListView (#1133)" This reverts commit d1bf93be200b3d3c48d0d292bf455f444485d8f9.
2017-09-15[UWP] Use ItemClick to re-enable use of enter key for selection on ListView ↵Paul DiPietro1-38/+10
(#1133)
2017-09-14Revert PR #762 (#1134)Paul DiPietro1-19/+0
2017-09-14[UWP] ListView ItemSelected event will fire only once on selection changed ↵Samantha Houts1-17/+20
(#1005) * Add repro for 44886 * [UWP] Fire ListItemClicked when Selection changes This will automatically set the value on the renderer and prevent the double event from firing. * Clean up repro * Update test case for delection scenario * [Core] Allow ListView item deselection * [UWP] Send events when item is deselected, too * Test works better when you DO something.
2017-07-24Add catch for reading properties dictionary (#1036)Jimmy Garrido1-2/+12
2017-07-04[UWP] Make sure to update back button on tabbedpage appears (#1028)Rui Marinho1-0/+1
2017-06-28[UWP] Fixes for usage of XF with .net native toolchain (#1024)Rui Marinho1-0/+4
* [UWP]Add required info for .net native when using AccessibilityView on UWP * [UWP] Add reference to xaml assembly * [UWP] Change rd.xml to be a embeded resource * [UWP] Move code to the right place * [UW]Only specify namespace we need
2017-06-26[UWP] Make sure to update HitTestVisible when IsEnable changes (#1015)Rui Marinho1-0/+4
2017-06-22[UWPP] Bug 56843; LayoutUpdated > SizeChanged; Native View Embed (#980)kingces951-1/+1
2017-06-20Align Layout transparency behavior between Android, iOS, Windows (#935)E.Z. Hart2-2/+2
* Setting up repros * Tests for all combos of opacity, background color, and InputTransparent * Make InputTransparent work correctly for Layouts on Windows * Prevent low opacity from making Layouts implicitly input transparent * Real target values in TransparentOverlayTests * Allow layouts with transparent backgrounds to be clickable * Fix gesture bubbling behavior for layouts * Fix spacing * Remove dead code and usings * Fix spacing * Add missing using directive * Adjust transparent overlay test to work with iOS quirks * Fix spacing * Fix bugs caused by not filtering ACTION_CANCEL in MotionEventHelper * Attempting to fix the tests on iOS (where UI tests can't see the buttons) * Remove extra lines * Another attempt to get tests working on iOS * Another attempt to get iOS UI tests working for transparent overlays
2017-06-14[WinRT/UWP] Update ZIndex on LowerChild/RaiseChild (#981)Paul DiPietro1-0/+7
2017-06-12trap for common custom renderer implemntation error (#970)kingces951-0/+5
2017-05-26[UWP] Update Editor TextColor correctly (#891)Paul DiPietro1-12/+10
2017-05-23Switch to EntranceThemeTransition Animation (#926)Jimmy Garrido1-2/+2
2017-05-15Adjust unhook location from PR #901 (#923)Paul DiPietro1-3/+5
2017-05-10[All] Rename Accessibility -> AutomationProperties (#912)Samantha Houts4-39/+39
* [All] Renamed Accessibility -> AutomationProperties * Update docs * Restore doc summaries * Revert unintended csproj changes
2017-05-05[UWP] Call UpdateTitleVisible on NavigationPage's appearing when inside a ↵Paul DiPietro1-0/+10
TabbedPage (#901)
2017-05-04fix 54730 (#874)kingces951-1/+1
2017-04-25Better error handling for image loading errors on iOS/Android (#849)E.Z. Hart1-13/+50
* First run at removing async void image update methods Consistent error logging and IsLoading on Android,iOS,UWP Move error logging into image handlers for better messages Add demo of custom ImageRenderer error handling Update docs Make the test smaller so the results don't get pushed offscreen Fix namespace error * Update error handling for fast image renderer * Update 37625 test to use image we control * Add java disposed check to avoid ObjectDisposedException in async operations * Add disposed checks to legacy renderer; null check element before SetIsLoading * Check disposed on GetDesiredSize for fast renderer Use local disposed member where possible for disposed check * Check for disposal after async handlers in iOS * Add disposal checks after async methods in Windows * Reset linker settings on project; reduce redundant casts in ImageViewExtensions
2017-04-11Implicit impl of controller ifaces (#807)kingces9513-96/+77
* Simplify ICtrl callsites * Rebase fix
2017-04-07[Internal] Normalize Obsolete attributes (#860)Samantha Houts1-1/+1
* [All] Normalize Obsolete attributes. Make sure we include the version in which the member was deprecated and consistent instructions for working around the deprecation, if applicable. * Update docs
2017-03-29Align iOS, Android, Windows handling of tap gesture event bubbling (#842)E.Z. Hart8-2/+64
* Add test for gesture bubbling behavior on all controls; Make Windows behavior consistent with other platforms; * Fix the stepper test * Make Frame on Android handle tap event bubbling like the other platforms * Formatting changes and query syntax instead of SelectMany
2017-03-27[WinRT/UWP] Enable selection in password entry (#677)Paul DiPietro1-10/+54
* [WinRT/UWP] Enable selection in password entry * Remove unnecessary if
2017-03-23UI tests for InputTransparent and fixes for Android/Windows (#808)E.Z. Hart1-0/+2
* Set up automated UI tests for InputTransparent * Pull in Adrian's UI tests from PR 483 * Fix bugs with box/label/image gestures passing through when not transparent * Fix disabling of layouts on Windows; fix 44096 test for iOS/Windows; * Automate the 53445 test
2017-03-22[iOS/Win] Label will not unnecessarily expand (#827)Samantha Houts1-5/+21
* Add repro for 53362 * [iOS] Label will not unnecessarily expand * [Win] Label will not unnecessarily expand
2017-03-20Make Entry completed behavior on UWP/WinRT match Android/iOS (#747)E.Z. Hart2-3/+44
* Make Entry completed behavior on UWP/WinRT match Android/iOS * Accessibility test
2017-03-20[WinRT/UWP] Open Picker dropdown when calling Focus (#762)Paul DiPietro1-0/+19
2017-03-15Bug 53224; Disable Cell if Command IsEnabled false (#812)kingces951-1/+2
2017-03-14[WinRT/UWP] Fix Opacity behavior with ProgressBar (#695)Paul DiPietro3-4/+27
* [WinRT/UWP] Fix Opacity behavior with ProgressBar * Update .nuspec * Further update .nuspec * Adjust .csproj line to fix Mac build
2017-03-14[Win] Labels will now wrap when inside horizontally infinite layouts (#639)Samantha Houts1-0/+35
* Add repro for 42559 * [Win] Override GetDesiredSize for LabelRenderer * [Win] Invalidate size on font/align change
2017-03-09Fixed a redundant check that caused a massive slowdown on UWP. (#788)BradChase20111-0/+1
* Fixed a redundant check that caused a massive slowdown on UWP. * Fixed formatting. * Fixed formatting. * UWP_UI_Speed_Fix Last time on tabbing, lets hope so!
2017-03-07Remove InternalsVisibleTo from Core to XF.Platforms.* (#782)kingces9519-30/+46
* Remove InternalsVisibleTo from Core to XF.Platforms.* * Changes per Jason's code review * Move LockableObservableListWrapper to internals namespace * Changes per Stephane's code review * update docs * Touch code to get CI to run tests * Rebase; Update documentation
2017-03-06[UWP] Improve toolbar consistency on MasterDetailPage (#744)Jimmy Garrido1-5/+5
* Improve toolbar consistency on MasterDetailPage * Properly indent xaml page
2017-03-06[C] ITextElement and TextElement (#789)Stephane Delcroix1-1/+1
2017-03-03[WinRT/UWP] Do not allow IsPresented use in Split mode on desktop (#707)Paul DiPietro1-0/+8
2017-02-23[UWP] connect the actual ObservableCollection to the ComboBox.ItemsSourceStephane Delcroix1-1/+1
2017-02-21update IEditorController callsitesChris King1-2/+4
2017-02-17Split Windows RuntimePlatform into UWP and WinRT (#748)E.Z. Hart1-1/+5
* Split RuntimePlatform Windows into UWP and WinRT * Update docs * Backward compatible targetPlatform=Windows for native XAML views on WinRT/UWP
2017-02-17[WinRT/UWP] Insert missing SendScrollFinished call (#751)Paul DiPietro1-0/+1
2017-02-17Fixed Title not updating on parent page (#743)Jimmy Garrido1-0/+2
2017-02-06Revert "[*] ScaleX and ScaleY"Stephane Delcroix1-2/+3
This reverts commit fc7d556848e731902d096953c9b4fb28a2466e6b.
2017-02-06[*] ScaleX and ScaleYStephane Delcroix1-3/+2
2017-02-03Fix disappearing ListView text when changing color settings on Windows (#731)E.Z. Hart7-229/+9
* repro * Checkpoint * Checkpoint * Remove now-unnecessary hacks for Time- and DatePicker