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
2018-07-16Add mock brushes to MockSampleControlLarry Ewing
2018-07-16Initial SolidBrushEditor logicLarry Ewing
2018-07-16Merge pull request #339 from xamarin/ermau-list-collection-viewEric Maupin
[Core] Add IList to SimpleCollectionView
2018-07-14[Core] Fix shared vs. local resource distinctionEric Maupin
2018-07-13[Core] Add IList to SimpleCollectionViewEric Maupin
2018-07-03Merge pull request #322 from xamarin/bleroy-color-propertiesEric Maupin
Allow for properties of type CommonColor.
2018-06-27Trigger change notification from color component boxes only when the user ↵Bertrand Le Roy
edited the presented value. Fixes #324
2018-06-26Store RGB components of `CommonColor`internally as double instead of byte, ↵Bertrand Le Roy
to improve accuracy. Fixes #325.
2018-06-20Allow for properties of type CommonColor.Bertrand Le Roy
2018-06-14[Core] Remove application resource source requirementEric Maupin
Fixes #305
2018-06-12Coerce color components to their respective rangeBertrand Le Roy
2018-06-12[Core] Don't switch to material if brush matches but is a resourceEric Maupin
2018-06-12[Tests] Support resources in mock editor for brushesEric Maupin
2018-05-15[Core/Win] Create resource core/windowEric Maupin
2018-05-12[Tests] MockResourceProvider: Support object-local sourcesEric Maupin
2018-05-12[Core] Add resource creation error checking APIsEric Maupin
2018-05-12[Core] Add IPropertyInfo.TypeNameEric Maupin
2018-05-12[Core] Change ResourceSource.IsLocal to Type enumEric Maupin
2018-05-04Merge pull request #297 from xamarin/ermau-fix-scollectionviewEric Maupin
Fix filtering issue with SimpleCollectionView
2018-05-04[Core] Fix state breakage unfilteringEric Maupin
Fixes #292
2018-05-04[Core] Update SimpleCollectionView filter on setter regardlessEric Maupin
2018-05-01[Core] Fix alpha insert grouped editors not being autoexpandedEric Maupin
Fixes #296
2018-05-01[Core] Fix grouped properties not properly adding at the endEric Maupin
2018-05-01[Tests] Make category defaults consistentEric Maupin
2018-05-01[Core] Don't trigger reset on child groups if already emptyEric Maupin
2018-05-01[Core] Rework CollectionPropertyViewModelEric Maupin
In order to track rows for display purposes and in order to provide a clean way to get at the "real" name of the child, we've moved to using a VM per child. Since the main way to get a real name of an editable target is to request an object editor, we introduce a cached provider so the PanelViewModel doesn't have to get its own copy when the targets are selected. This collections tend to be small, but if we run into issues with the amount of things we're keeping alive we can easily move to on-demand requests.
2018-05-01[Core/Win] Collection property editorEric Maupin
2018-05-01[Core] Add category AutoExpandEric Maupin
2018-05-01[Core] Make assignable types more reusableEric Maupin
2018-05-01[Tests] Add object + collection to mockEric Maupin
2018-05-01Update to 4.6Eric Maupin
2018-05-01[Core] Move IEditorProvider into TargetPlatformEric Maupin
2018-05-01[Core] Support child assignable typesEric Maupin
2018-04-25[build] Move to packagereferences for our nugetsAlan McGovern
2018-04-24Look for Nunit props in both relevant places for side-by-side and ↵Bertrand Le Roy
designer-integrated configurations.
2018-04-10Merge pull request #261 from xamarin/dominique-CombinablePropertyEditorEric Maupin
[Mac]Initial implementation for Combinable Property Editor
2018-04-10[Core] Trigger Value update after individual choices up to dateEric Maupin
While the most correct thing is for the UI to reflect the values of the individual choices when they are changed, a reasonable usage is to wait for the value to update and then trigger the update. Reordering Value to update after the flags ensure that they are up to date when Value is triggered through INPC. Given that the flags are really the source of truth for the values in the combinable property, it makes sense for them to be first.
2018-04-10[Mac]Initial implementation for Combinable Property EditorDominique Louis
2018-04-06Make MockBrushPropertyInfo IEquatable so the standalone apps can properly ↵Bertrand Le Roy
see brush properties when multiple objects are selected. #277
2018-04-05[Core] Fix non-nullable bool multiselect behaviorEric Maupin
2018-04-02Merge pull request #208 from xamarin/lewing-multi-nullableEric Maupin
Add test cases for empty editor lists and null ValueInfo<T> values
2018-04-02[Tests] Fix GetConstrainedRandomValueBelowBoundsEric Maupin
The randomness didn't hit it until the test orders changed, but we need to leave a slot above the value for the min and max separately, can't have max take value + 1 as its min since max-1 won't be higher than value + 1 for min.
2018-04-02Try to handle null ValueInfo<T> without crashingLarry Ewing
2018-04-02Add tests for problem casesLarry Ewing
2018-03-30[Tests] Fix value source testsEric Maupin
2018-03-26[Core/Win] Add Navigate to Source supportEric Maupin
2018-03-23[Core/Win] Add Convert to Local ValueEric Maupin
2018-03-22[Core] Make resource filter search a contains instead of startsEric Maupin
2018-03-20Merge pull request #260 from xamarin/ermau-value-equivalencyEric Maupin
[Core] Ignore raw value changes from direct input
2018-03-19[Tests] Add variable valuesources to mock control, add unset propsEric Maupin