summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues
AgeCommit message (Collapse)AuthorFilesLines
2017-01-26Use a prototype TextBlock to resolve theme resources on Windows (#703)E.Z. Hart2-0/+31
* Use a prototype TextBlock to resolve theme resources on Windows * Move textblock declaration to beginning of class * Don't retain prototype TextBlock in memory
2017-01-26[Android] Keyboard should not change layout while dismissing on Entry and ↵adrianknight892-0/+50
Editor (#663) * handle keyboard on entry * add sample code * editor changes * change text * better fix * changes
2017-01-26[iOS/Critical] Fix ListView memory leaks (#524)adrianknight893-0/+280
* fix memory leaks added sample code changed page name Changed page title add screen instructions fix copy paste error change subview dispose logic Fix context action memory leak add sample code change custom page names Revert "change custom page names" This reverts commit 7aaab2625d9526080ca5c51c02e909f09ee3f610. changed class names changes UI test for 32206 update ui test fix whitespace UITests done * run UI tests on iOS only * fix code style * dispose prototype * fix child renderer issue * add null check
2017-01-24Add check for disposed gesture detector on VisualElementRenderer (#706)E.Z. Hart2-0/+120
2017-01-19Fix NullReferenceException in VisualElement finalize. (#701)Kevin Petit2-0/+81
2017-01-16Pool and reuse MKMapView instances on iOS 9 as well as iOS 10 (#680)E.Z. Hart1-0/+4
2017-01-12Fix out-of-memory crashes on iOS when creating maps (#467)E.Z. Hart1-4/+31
* Pool map views on iOS 10 to avoid memory issues Clean up disposal implementation for map renderer, delegate * Enable 39489 test on iOS * Add missing XF Maps references * Add missing maps reference to Windows 8.1 project * Actually enable the test for iOS * Fix placement of Isolate override * Don't create a new control for ImageRenderer if NewElement is null * Reverting fixes to ViewRenderer Dispose; have to fix that in a separate PR
2017-01-12[C] new OnPlatform mechanism (#658)Stephane Delcroix18-45/+54
* [C] Obsolete TargetPlatform * [Xaml] support and test the new syntax * blind fix windows platforms
2017-01-12[iOS] Labels with WordWrap or CharacterWrap will Expand (#529)Samantha Houts2-0/+166
* Add reproduction for 28650 * [iOS] Expand the label to fill width if wrapping Also, simplify the `if` statement, since `LineBreakMode` is not a flags enum and the only excluded member was `None`. * Test two small labels next to each other in horizontal layout
2017-01-10iOS and Android timers should be runnable from any thread and execute… (#374)adrianknight892-0/+117
* iOS and Android timers should be runnable from any thread and executed on the main thread * removing unused Timer class declarations with minor refactoring efforts * iOS and Android timers should be runnable from any thread and executed on the main thread * removing bak file * switch to v7 * add test code
2017-01-10Update 45926 test to account for NavigationPage ref to popped pageE.Z. Hart1-1/+12
2017-01-03Allow subscriber to be collected if MessagingCenter is the only reference to ↵E.Z. Hart2-0/+112
it (#617) * Repro * Make messaging center callbacks weak references * Preserve attribute * Fix test method name * Watch for collection of actual delegate target instead of wrapper delegate * Preserve the original platform instance when changing main page * Better tests for lambda situations * Update tests, make callback target a weakreference if it's the subscriber * Ensure old Platform MessagingCenter subs are gone before creating new Platform
2017-01-03[WinRT/UWP] Apply BackgroundColor to Stepper buttons (#581)Paul DiPietro2-0/+47
* [WinRT/UWP] Apply BackgroundColor to Stepper buttons * Add explanatory text; use nameof * Move explanatory text to a label
2017-01-03[iOS] Prevent multiple ListView cells from being swiped simultaneously (#578)adrianknight892-0/+62
* disable multiple cell swipe * add sample code * refactored * convert to weakreference * remove null setting * change weakreference setting place * remove if * revert isopen changes * add instructions
2017-01-03Make UWP toolbar display rules consistent with other platforms (#638)E.Z. Hart2-0/+36
2016-12-30[iOS] Change keyboard type while keyboard is visible (#443)adrianknight892-0/+79
* Change keyboard while changing text * add sample code
2016-12-28fix nre when changing content in datepickerselected (#494)adrianknight892-0/+59
2016-12-27[UWP] Fix TextBox style for foreground focus color (#618)Paul DiPietro2-0/+119
2016-12-22[iOS] Entry should not pass a newline to the next responder (#397)adrianknight892-0/+54
* UITextField should not return so that the next field does not get passed a newline * Added code sample
2016-12-19[UWP] Use toolbar foreground color on primary items (#640)Paul DiPietro2-0/+56
2016-12-16[WinRT] Use a queue to prevent multiple MessageDialogs from causing a crash ↵Paul DiPietro2-0/+38
(#347) * [WinRT] Use a queue to prevent multiple MessageDialogs from causing a crash * Make change to use Device.IsInvokeRequired
2016-12-14Fix potential NRE in ConditionalFocusLayout (#587)2.3.3.175E.Z. Hart2-0/+53
2016-12-13Disable using EstimatedRowHeight for uneven rows with known heights (#454)E.Z. Hart2-0/+205
2016-12-12Add missing interface implementationsE.Z. Hart1-0/+10
2016-12-07Fix 41415 test (use rounding)E.Z. Hart1-3/+4
2016-12-07[UITest] Only run 41415 test on AndroidRui Marinho1-1/+1
2016-12-06Put test in the correct namespaceE.Z. Hart1-1/+1
2016-12-06[Android] Dismiss context menu when view cell is removed (#568)adrianknight892-0/+107
* close context action when cell is no longer available * rename method
2016-12-06[Android] ScrollView should send correct ScrollX and ScrollY (#394)adrianknight892-0/+116
* Android should show correct ScrollX and ScrollY when scrolling in both directions * Adding sample code to demonstrate scrolling * Orientation fix * ScrollTo should work for horizontal + vertical scrolling * Get correct scroll x and y values for ScrollOrientation.Both * Convert positions to pixels * Adding unit test to watch out for incorrect animation positioning * automated test * improvements * fixed texts
2016-12-05[WinRT/UWP] Adjust margin for centered Slider (#604)Paul DiPietro2-0/+50
2016-12-01Revert "Jimmgarrido uwp toolbar (#588)"Stephane Delcroix2-41/+1
This reverts commit 1ff0db9c6f4ba1167e6b2620066f83088f23c5bf.
2016-12-01Jimmgarrido uwp toolbar (#588)Stephane Delcroix2-1/+41
* Fixed CommandBar being clipped when expanded by removing explicit Height * Add UITest
2016-12-01Don't run Command CanExecute on incorrect inherited binding context type (#572)E.Z. Hart2-0/+110
* Allow Command CanExecute to recover when run on inherited bindingcontext * Make exception handler more generic * Checking types in Command delegates to avoid exception in the first place * Adding type chekc to other Command constructor * Use nameof for ArgumentNullExceptions * Add unit tests for null parameters, handle value types and Nullable<T>
2016-11-30[iOS] Avoid using DrawRect on base VisualElementRenderer (#570)Rui Marinho2-0/+30
* [Controls] Add retro for Bugzilla 48158 * [iOS] Avoid using DrawRect as this will make some properties not being applied to the layer * [iOS] Make sure BoxRenderer calls base LayoutSubviews * [iOS] Better fix for adding the Blur effect and avoid override draw’s * [Controls] Remove extra nunit category
2016-11-30Fix Issue 774 test so it works with wrapped IApp on phone and tabletE.Z. Hart1-35/+12
2016-11-30Have UI test for 21177 clean up after itselfE.Z. Hart1-0/+1
2016-11-28Updating 35733 test to use a URL XF controlsE.Z. Hart1-1/+2
2016-11-22Fix issue descriptionSamantha Houts1-1/+1
2016-11-22Fix broken alerts for iPad (#549)beta-2.3.4-pre1E.Z. Hart1-1/+1
* Fix broken alerts for iPad * Remove unnecessary parameter and add null check * Dropping test limit to 10 so we can get iOS passing
2016-11-21Turning down number of consecutive tests to avoid jetsam ejections on iOSE.Z. Hart1-1/+2
2016-11-19Adding some restart logic to the UI tests if navigation fails (#550)E.Z. Hart1-18/+55
2016-11-18Add missing semicolonE.Z. Hart1-1/+1
2016-11-18Removing inconclusive result from Issue342 testE.Z. Hart2-1/+3
Marking 35736 test for manual review
2016-11-18[Android] Do not show cell context actions if input views are long clicked ↵adrianknight892-1/+57
(#544) * Disable long click on cells if touch is on an input view * remove redundant check
2016-11-18Correct test nameE.Z. Hart1-1/+1
2016-11-18Disable 35736 test for AndroidE.Z. Hart1-1/+1
2016-11-17Put UI test using directive inside UITest blockE.Z. Hart1-1/+2
2016-11-17Move 36802 test into Issues namespaceE.Z. Hart1-2/+3
2016-11-16Run multiple UI tests without restarting ControlGallery (#539)E.Z. Hart155-267/+597
* Allow UI tests to bypass "manual" navigation to isses pages * Add missing Preserve attribute * Make Issue198 test work with direct navigation * Remove empty UI tests * Fix error handling for iOS * Use navigation which works for subsequent TestNavigationPages on iOS * Fix race condition in 39530 test Remove master page nesting when doing direct nav for UI tests * Set up and run a single instance of Control Gallery for UI tests * Force NavigateToIssue to wait for main page appearing to deal with iOS timing * Move remaining UI tests into Issues namespace * Change the connection check URL so it'll work on iOS * Make Appearing Gallery tests work without restarting app * Prevent ContextActions tests from stepping on each other * Make context menu test more robust * Move ButtonExtensions back to Controls namespace * Have test 774 dismiss the action sheet before ending * Update UITest package to 2.0.0 stable * Make 2948 restore orientation when it's done * Null check on PageController before calling SendDisappearing * Adding a wait for the root page in the core tests * Add consecutive tests reset to prevent memory slog on older iOS devices
2016-11-16[iOS] Update Editor text from autocorrect when losing focus (#535)Paul DiPietro2-0/+56