summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT
AgeCommit message (Collapse)AuthorFilesLines
2016-12-06[WinRT] Do not store previous page when popping (#565)Paul DiPietro1-1/+3
2016-12-05[WinRT/UWP] Adjust margin for centered Slider (#604)Paul DiPietro1-0/+20
2016-12-02Allow CommandBar to expand and show command labels (#594)E.Z. Hart1-20/+5
* Allow CommandBar to expand and show command labels Consolidate command bar placement code * Make title text wrapping consistent between NavigationPage and MasterDetailPage * Align toolbar/navigation bar behavior with other platforms
2016-11-16[W] Support 0 as valid BorderWidth (#537)Stephane Delcroix1-2/+2
2016-11-15Added CornerRadius property To Frame controlAndrei N1-1/+15
2016-11-15[UWP] Explicitly set mobile StatusBar colors to white Background/black ↵Samantha Houts1-6/+22
Foreground on Light theme (#491) * [UWP] Encapsulate MobileStatusBar * [UWP] Set StatusBar colors on Light theme * Add test code to override status bar color
2016-11-15[WinRT] Fix ModalPushed/ModalPopped not firing (#490)Paul DiPietro1-2/+0
2016-11-15[WinRT] Setting ActivityIdicator color works now (#479)Jimmy Garrido1-1/+19
2016-11-08[UWP] Fix Transparent Default Button (#468)Jimmy Garrido1-1/+4
2016-10-26[Win] Toolbar placement works with initial value (#488)Samantha Houts1-1/+7
* Defer UpdateToolbarPlacement until CommandBar is in the control hierarchy * Cleanup
2016-10-20Make Editor focused background color behavior consistent with Entry on ↵E.Z. Hart2-5/+26
Windows (#456)
2016-10-20[WinRT] Fix back button not showing if current page has no title (#438)Jimmy Garrido1-1/+1
2016-10-12Modified type cast to appropriate type (#447)ckrempp911-2/+2
I changed the type cast from BitmapImage to BitmapSource because if you want to do image manipulation, in UWP, you use the WriteableBitmap class.
2016-10-11[Windows] Fix crash when toggling IsPassword on multiple Entry controls (#405)Jimmy Garrido1-7/+7
* [Windows] Fix crash when toggling IsPassword on multiple Entry controls
2016-10-11[WinRT] Fix MDP and TabbedPage Appearing/Disappearing (#387)Paul DiPietro1-0/+1
2016-09-30[WinRT] Fix regression on ListView selection with enter key (#402)Paul DiPietro1-8/+6
2016-09-27[Win] Will arrange native children of custom renderers (opt-in) (#322)Samantha Houts1-1/+31
* Add repro for 42602 * [Win] Add option to arrange native children * [Win] Don't allocate arrangedChildren unless required
2016-09-27Fix potential NRE accessing current application via Page.RealParent (#330)E.Z. Hart1-1/+1
* Fix potential NRE accessing current application via Page.RealParent * Update Native Bindings Gallery to use MessagingCenter
2016-09-27[UWP/WinRT] ListView UI virtualization works without explicit height on ↵Samantha Houts1-1/+3
Cell/Row (#367) * Add repro for 41271 * [UWP/WinRT] ListView virtualization works without explicit height on Cell/Row * Adjust repro to clear ItemsSource OnDisappearing. * Update docs
2016-09-23do not compile winrt stuffs on macStephane Delcroix1-8/+8
2016-09-23[Xaml] Xaml native views and bindings for WP8.1 (#363)Stephane Delcroix1-1/+7
2016-09-21Implement dispose pattern correctly to support derived classes (#364)E.Z. Hart1-0/+6
2016-09-12After Label.FormattedText property changed need invoke UpdateText method (#335)Mikhail1-1/+1
2016-09-08Native Bindings (#278)Stephane Delcroix6-1/+178
* [C, I, A, W] Support Native Bindings * fix tabs
2016-08-30[Win] Fix FontAttributes unexpectedly changing a label's size (#325)Paul DiPietro1-1/+4
2016-08-30Use character truncation in Windows (#321)E.Z. Hart2-11/+22
Change layout order ViewCells on Windows to correct label length layout issues Add extra layout pass on ViewCell load to make cells without margins visible
2016-08-30Platform Specifics (#301)Samantha Houts5-27/+95
* Playing around with how the platform specifics interfaces etc. might work * Sample implementation of iOS navigation translucency * Very slightly reduced code * Better vendor stuff * Drop single-implemenation interfaces * Generics on NavigationPage * On-demand vendor stuff * Remove functionally duplicate classes and make ControlGallery work again * Namespace all the things. XAML test. * Can use Effect to attach platform specific * Attach Effect on PropertyChanging for XAML support! * Rename IConfigPlatform interfaces for readability * Some renaming to match the documents * Split class files * Clear out test-only code * Re-namespace * Added On method to rendered Elements * Allow for removal of platform suffix, convenience methods on specific platforms * Creating a gallery page for specifics * Add rudimentary Platform Specifics gallery; make CollapseStyle work on UWP; Add CollapsedPaneWidth specific property * Toolbar now working with both collapse styles * MDP now displaying Content title; toolbar routing around title * Add a gallery for the iOS NavigationPage stuff * Add Navigation Page as detail page to verify it works with new Toolbar options * Make titlebar/toolbar background colors consistent * ToolbarPlacement now working on NavigationPage * Toolbar Placement working for tabbed and nav pages * Fix bug where phone doesn't get default toolbar placement on start * [Core] Add PS WindowSoftInputModeAdjust [Core] Make Application extendable * Toolbar placement now working on Nav, Tabbed, and Master pages on desktop/phone Remove unnecessary style indirection Fix build errors * [A] Add PlatformConfigurationExtensions * SetSoftInputMode test page * [A] SetSoftInputMode Known issue: Status bar color does not work in AdjustResize mode * [Core] Add PS Blur * [iOS] Configure renderer for blur * Add test page * Move to blur VisualElement for broader support * Move test pages to gallery * Update docs * Use lazy initializer for PlatformConfigurationRegistry
2016-08-25Fix regression by adding null check in Windows ListView selection (#314)Paul DiPietro1-1/+1
2016-08-16[WinRT] Remove preemptive setting of null upon action sheet closure (#305)Paul DiPietro1-1/+0
2016-08-16[Windows] Correct enter/esc keypress behaviors for MessageDialog (#292)Paul DiPietro1-2/+2
2016-08-16Fix Entry/SearchBar color issues (#306)E.Z. Hart4-48/+74
* Fix disappearing Entry text on UWP Anniversary Edition Fix background color reversion bug in UWP Phone Move SearchBar styling on UWP to its own file Make foreground/background color changes on UWP SearchBar/Entry consistent Fix SearchBar color toggle bug on WP8 * Temporarily moving SDK target to previous version * Fix build error on OSX
2016-08-11[Win] Set BindingContext for default cell (#289)Samantha Houts1-5/+7
* Revise 41205 test case to use binding * [Win] Set BindingContext for default cell * [Win] SetInheritedBindingContext for Cell
2016-08-03Enable WebView to render local HTML files on WinRT platforms (#277)E.Z. Hart1-7/+52
* Enable WebView to render local HTML files on WinRT platforms * Add test to demonstrate that the solution works even if <head> isn't in the HTML string
2016-08-02[UWP/8.1] ListView respects keyboard selection (#182)Paul DiPietro1-22/+13
The ListViewRenderer's OnControlSelectionChanged would fire when using the keyboard to change the selection of a ListView, but the Element's SelectedItem value was not being set due to it normally being tracked via tap/click.
2016-08-02Change SourceChanged event on ImageSource to weak event to allow Images (#268)E.Z. Hart1-2/+6
referencing application-wide StaticResource ImageSources to be GCed
2016-07-18[8.1/UWP] ListView allows selection with enter key (#241)Paul DiPietro1-0/+11
2016-07-18[Win] Setting TabbedPage.BarTextColor works (#244)Samantha Houts1-0/+18
[Win] TabbedPage BarBG takes precedence
2016-07-18Windows image loader error handling (#260)E.Z. Hart8-22/+47
* Repros for various image issues * Log image loading errors * Better repro instructions and user interface * Image loading tests now running on WinRT/UWP phone/tablet/desktop * Move FailImageSource into shared project * Move FailImageSource into shared project * Update docs
2016-07-18Ensure BindingContext is properly passed to CreateDefault in UWP ListView (#259)Jason Smith1-4/+3
2016-07-01[All] Crash fixes for ListViews (#243)Samantha Houts1-1/+1
* [Controls] Add repro for 42277 * [Android] No crash if GroupHeaderTemplate=null * [Android] Fix DataTemplateSelector crash * [Core] Expose ListProxy on TIL * [iOS] Fix DataTemplateSelector crash * [Win] Fix DataTemplateSelector crash * [Docs] Update docs * [Core] Implement ListProxy explicitly Allows ListProxy property to stay internal. * [Controls] Revert unnecessary change to shproj
2016-06-17Prep Cell & friends for removal of InternalsVisibleTo (#142)Samantha Houts8-79/+70
* Prep Cell & friends for removal of InternalsVisibleTo Includes: - Cell - EntryCell - ListView - MenuItem - TableView - ViewCell - Toolbar Moved extensions to Internal & removed TPH * Update docs * [Controls] Ignore Issue2411 on iOS <9 * [Controls] Formatting for Issue2411
2016-06-16[WinRT] Add base platform as inner proxy navigation to Application, Fix back ↵Rui Marinho2-0/+8
button issue (#214) * [WinRT] Add base platform as inner proxy navigation to Application * [UWP] Remove back button when NavigationPage is disposed
2016-06-16[UWP] Escape key returns ActionSheet result (#208)Paul DiPietro1-0/+15
When awaiting a DisplayActionSheet in UWP, pressing the escape key with the ActionSheet open would dismiss the dialog but not return a result.
2016-06-16Prep Page for removal of InternalsVisibleTo (#150)E.Z. Hart7-44/+44
2016-06-08[Win 8.1] Initial ListView selection not shown (#174)Paul DiPietro1-0/+6
On Windows 8.1, when initially setting a ListView's SelectedItem, the item in question would not have any visual indication that it was selected when first showing (a background color for the cell). Subsequent selections would work as expected.
2016-06-08Remove hard-coded image sizes for button images (#202)E.Z. Hart1-9/+19
2016-05-27WinRT/UWP center crop image on AspectFill (#190)Adam1-0/+10
2016-05-26[8.1/UWP] Fix PopToRootAsync functioning incorrectly (#185)Paul DiPietro1-0/+7
When using PopToRootAsync on 8.1/UWP, the stack was being cleared but the actual page was not being set due to a missing event handler on the NavigationPageRenderer.
2016-05-26Fix margins on ViewCell (#189)Rui Marinho1-1/+1
* [iOS] Set the frame of a cell NativeView using the calculated positions and size * [UWP] Make wrapper of a ViewCell respect margins
2016-05-04Add IMasterDetailPageController and update renderers (#146)E.Z. Hart1-3/+5