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-06-27Remove focusable attribute from more color popup controlsBertrand Le Roy
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-25Fixes #320Bertrand Le Roy
2018-06-20Fix double-focusable issue on brush tabs. Fixes #310Bertrand 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[Win] Fix double click on scrollbar selectingEric Maupin
2018-05-15[Core/Win] Create resource core/windowEric Maupin
2018-05-12[Win] Correct ComboBox disabled appearanceEric Maupin
2018-05-12[Win] Fix duplicate resource mergeEric Maupin
2018-05-05[Win] Fix scrolling in grouped modeEric Maupin
Removes the scrollviewer from group child lists. Fixes #293
2018-05-01[Win] Fix crash when clearing out a grouped editorEric Maupin
2018-05-01[Win] Fix grouping for collection property listEric Maupin
2018-05-01[Win] Center collection editor windowEric 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[Win] Add properties host flagEric Maupin
We need a parent control to pull resources from to pass them through to child windows. Originally we were searching for the panel, but the panel includes all the search/arrange features, we may just need the list of properties. So now we have a marker to hint at which controls would contain the resources.
2018-05-01Update to 4.6Eric Maupin
2018-05-01[Core] Move IEditorProvider into TargetPlatformEric Maupin
2018-04-20[Win] Search icons to dynamicEric Maupin
2018-04-04Reset the initial color every time the brush popup is open. #161Bertrand Le Roy
2018-04-04Drop custom placement of the brush editor popup. #262Bertrand Le Roy
2018-04-04Use SystemDropShadowChrome for brush popup drop shadow. #234Bertrand Le Roy
2018-03-26[Core/Win] Add Navigate to Source supportEric Maupin
2018-03-26[Win] Use Foreground and Triggers for value source coloringEric Maupin
2018-03-23[Core/Win] Add Convert to Local ValueEric Maupin
2018-03-15[Win] Add basic property description supportEric Maupin
2018-03-14[Win] Display resource name in resource pbutton tooltipEric Maupin
2018-03-08Merge pull request #250 from xamarin/ermau-fix-resourcesEric Maupin
Improves resources appearance
2018-03-08[Win] Make inline preview expandableEric Maupin
Fixes #217
2018-03-08[Win] Move to preview template selectorEric Maupin
This moves the "no preview" fallback to a template in the selector. The problem before was the contentpresenter would always fallback to a ToString if it didn't have a template for the datatype, leaving no way to control visibility of No Preview for previews that weren't a solid cover (like a string instead of a color). This also fixes placement of string previews (fixes #238)
2018-03-06Merge pull request #248 from xamarin/bleroy-brush-tab-md-exclusion-fixEric Maupin
Fix bad casting in brush tabs
2018-03-06Fix bad casting in brush tabs when Material Design is not supported by the ↵Bertrand Le Roy
host platform.
2018-03-05[Win] Combinable checkbox focus colorEric Maupin
2018-03-05[Win] Combinable editor container shouldn't be focusableEric Maupin
2018-03-02Merge pull request #243 from xamarin/ermau-fix-custom-expression-popupEric Maupin
Fix custom expression popup
2018-03-02[Win] CustomExpression popup shouldn't stay openEric Maupin
Seems StaysOpen from the Style doesn't apply soon enough.
2018-03-02[Win] Fix custom expression close crashEric Maupin
Now that the resources are not global to the application, when the popup is detached it loses its template triggering an update for a null template. Fixes #215
2018-03-02[Win] Set scroll corner to match backgroundEric Maupin
2018-03-02[Win] Fix horizontal scroll bar borderEric Maupin
2018-03-02[Win] Shadows are fixedEric Maupin
2018-03-02[Win] Menu 'icon' colors are fixedEric Maupin
2018-03-01[Win] Fix NRE in ChoiceControl on unloadEric Maupin
In VS, unloading controls seems to want to unset their styles and therefore their templates which triggers updates not seen in the standalone app. This fixes the container generator status change when the template is changed to null. When it's null we don't care about the contents so we'll just return.
2018-02-27Fix normal and accent color selection in material design pickerBertrand Le Roy
2018-02-27Use an enum to represent the currently selected brush typeBertrand Le Roy
2018-02-27[Win] Clean up brush selectionEric Maupin
This moves brush type logic to the VM, fixes some bugs in selection and makes material selection set a value for consistency.
2018-02-27[Win] Ensure brush editor updates on context changesEric Maupin
2018-02-27[Win] Make material editor more reusableEric Maupin
2018-02-27[Win] Ensure ChoiceControl deselectsEric Maupin
In theory just checking one radio in the group should be enough, but in some circumstances when VMs change it doesn't appear to be enough, so we'll enforce it.