Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-11-07Fix a11y bug 999307Bret Johnson
Windows has the surprising behavior that when an automation group (like a group of combinable checkboxes) has a colon in the name, the group label is not read by the narrator. This causes a problem for the Android designer, which has property names like "app:layout_anchorGravity". We work around this by replacing the colon with a space in the group's automation name.
2019-10-13Merge pull request #642 from xamarin/ermau-fix-989518Dominique Louis
Fix resource/no resource brush swapping
2019-10-10Merge pull request #639 from xamarin/ermau-fix-reset-variationdominique-MakeArrangeModeTabbableDominique Louis
[Tests] Don't erase variant on reset
2019-10-10Merge pull request #649 from xamarin/ermau-autoresizingDominique Louis
Windows Autoresizing Editor
2019-10-04[Core] AutoResizingPropertyViewModelEric Maupin
2019-10-04[Core] Support refreshing resourcesermau-refresh-resourcesEric Maupin
While most resource UIs have a popup or window that doesn't really require a live refresh, the brush resource tab does have a persistent list so it needs to be able to update. Since the view model is shared, we get the former for free anyway.
2019-10-02[mac] Fix filter visibility on reuseEric Maupin
2019-09-30[Tests] Don't erase variant on resetEric Maupin
2019-09-24[mac] Predefined should support reuseEric Maupin
2019-06-26[Mac] Make Binding Dialog ModalDominique Louis
[Mac] Ensure property button view is cleared
2019-06-26[Mac] Initial Binding Editor Dialog.Dominique Louis
2019-04-24[Core] Add GetIsLastVariant for UIEric Maupin
2019-04-24[Core] Tighten variation namingEric Maupin
This tightens up the naming distinctions: - Variation - The set of VariationOptions defining when the Variant will be active. - Variant - The collective property, Variation and its value. It also asyncifies the request for Mac
2019-04-24[Core] Ensure variants update correctlyEric Maupin
Additionally adds some extra tracking properties we'll need for the UI, HasVariantChildren / IsVariant control alt-background and presentation of remove variant controls.
2019-04-12[build] Fix test running inside the IDEAlan McGovern
Don't ask me how/why this helps :p
2019-03-27Merge pull request #573 from xamarin/ermau-timespan-editorDominique Louis
[mac] Refactor & Add TimeSpan / Char editors
2019-03-26[mac] Add Char editorEric Maupin
2019-03-26[mac] Add basic TimeSpan editorEric Maupin
2019-03-25[build] Strongname this so it can be referenced by other strongnamed libsAlan McGovern
2019-03-21Update Xamarin.PropertyEditing.Tests/Xamarin.PropertyEditing.Tests.csprojEric Maupin
Co-Authored-By: alanmcgovern <alanmcgovern@users.noreply.github.com>
2019-03-21[build] Enable warn as error for this warning-free projectAlan McGovern
2019-03-21[build] Update to netstandard2 and/or net472Alan McGovern
2019-03-21[build] Remove a warningAlan McGovern
2019-03-20[Mac] Adds implementation to handle DateTime fields (#480)Jose Medrano
2019-03-20[Mac] Adds implementation of FilePathEditorControl (#479)Jose Medrano
Fixes VSTS #732636 - Implement FilePath editor https://devdiv.visualstudio.com/DevDiv/_workitems/edit/732636
2019-03-11[Core] Fix INPC notice for group child removalEric Maupin
Fixes #557
2019-03-11[Core] Filter uncommon properties properlyEric Maupin
2019-03-07[Core] Improve selected target handlingEric Maupin
2019-03-06[Core] Fix removing groupable items when not groupedEric Maupin
Fixes #544
2019-02-26Merge pull request #538 from xamarin/ermau-type-selector-fixesEric Maupin
Object editor / type selector fixes
2019-02-21Merge pull request #541 from xamarin/ermau-type-selector-editorEric Maupin
Type selector editor
2019-02-21[Core/Win] Add ITypeInfo property editorEric Maupin
2019-02-21[Tests] Allow specifying RealTypeEric Maupin
2019-02-21[core] Fix no brush -> materialEric Maupin
2019-02-20[core] Fix empty parents on filter changesEric Maupin
Fixes #522
2019-02-20[core] CreateInstance should bail on null returned typeEric Maupin
2019-02-15[Tests] Fix CanDelve testEric Maupin
2019-02-11[Core] Fix grouped type properties not swapping properlyEric Maupin
Fixes #525 When we moved to the new panel group system, the grouped editors weren't accounted for and so when we try to remove their child property from the container group it's not found since they're inside the group editor VM. This also meant that even if removal had worked, we wouldn't properly add new shared view model types to the group.
2019-02-11Revert "Grouped type fixes" (#527)Eric Maupin
PR526 introduced a crash in named arrange mode and exposed a hole in our tests. All tests pass, but no properties are shown in either mode.
2019-02-09[Core] Fix grouped type properties not swapping properlyEric Maupin
Fixes #525 When we moved to the new panel group system, the grouped editors weren't accounted for and so when we try to remove their child property from the container group it's not found since they're inside the group editor VM. This also meant that even if removal had worked, we wouldn't properly add new shared view model types to the group.
2019-02-09[Core] Don't leave phantom categories from grouped typesEric Maupin
2019-01-10Merge pull request #471 from xamarin/dominique-ValueInputModeEric Maupin
[Mac] Initial InputMode implementation.
2019-01-10[Mac] Initial InputMode implementation.Dominique Louis
2018-12-13[Core/Tests] Add Ordered tests from Cadenza, fix set indexerEric Maupin
2018-12-11[Tests] Make some properties uncommonEric Maupin
2018-12-11[Core] Refactor property groups into more flexible classEric Maupin
2018-12-11[Core] Add IsUncommonEric Maupin
2018-12-08[Core] Use a Task result for type requestEric Maupin
This allows for a request to be answered in the future, preventing the implementing UI to have to block for a response during the event request. Primarily used to support Mac as it uses popovers rather than whole windows.
2018-11-12[Tests] Add auto-expand group testsEric Maupin
2018-10-17[Core] Bindings should be set via SourceDescriptorEric Maupin