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
2022-07-13Keeps reference from delegatestores-delegateJose Medrano
2022-07-13Stores property list delegate to avoid GC collect itJose Medrano
2022-06-14Merge pull request #818 from xamarin/bundle-fallbackd17-4d17-3Jose Medrano
Fallback PropertyEditingResource in app bundle resources directory
2022-06-14Fallback PropertyEditingResource in app bundle resources directoryJose Medrano
2022-06-13Merge pull request #815 from xamarin/dev/sandy/macos-rc3Sandy Armstrong
Build: Use a 6.0.300 SDK and macos workload RC3
2022-05-17Build: Don't use Mono msbuild on Macdev/sandy/macos-rc3Sandy Armstrong
2022-05-17Build on macos-12 for Xcode 13.3Sandy Armstrong
2022-05-12Build: Use a 6.0.300 SDK and macos workload RC3Sandy Armstrong
2022-05-10Merge pull request #811 from xamarin/dev/sandy/workloads-again-i-know-1Sandy Armstrong
Update macos workload provisioning
2022-04-19Merge pull request #813 from xamarin/backport-pr-812-to-mainBret Johnson
[main] Remove UpdateExpansions
2022-04-19Remove UpdateExpansionsBret Johnson
Remove the call to UpdateExpansions after ReloadData in response to OnPropertiesChanged (e.g. called when selection changes). This doesn't seem necessary, as when views are recreated their expansion status is set correctly originally and AppKit remembers expansion state after. Further, this fixes AB#1521131, where the Name and Type rows are sometimes blank - apparently expanding manually, and doing it synchronously like that, causes the NSOutlineView to get confused and not show the top row sometimes.
2022-04-16Update macos workload provisioningdev/sandy/workloads-again-i-know-1Sandy Armstrong
Fixes this error that some people are seeing: Workload installation failed: microsoft.net.runtime.monoaotcompiler.task::6.0.4 is not found in NuGet feeds https://aka.ms/dotnet6/nuget/index.json;https://devdiv.pkgs.visualstudio.com/DevDiv/_packaging/VSMac/nuget/v3/index.json". See xamarin/provisionator#455
2022-04-15Merge pull request #810 from xamarin/dev/chabiss/remove_system_net_httpBret Johnson
Remove system.net.http unused reference
2022-04-15Remove system.net.http unused referenceCharles Bissonnette
2022-04-14Set a11y name for editable combo TextEdit (#808)Bret Johnson
Set the Automation.Name property for the TextEdit control in an editable combo to be the same as that for the entire combo box. Fixes AB#1501925
2022-03-19Merge pull request #803 from xamarin/dev/peterspa/EscCloseBrushEditord17-2Peter Spada
Allow ESC key to close brush editor popup
2022-03-19Use PreviewKeyDown for Ctrl+Space to show menu (#800)Bret Johnson
* Use PreviewKeyDown for Ctrl+Space to show menu Ctrl+Space is the keyboard short that can be used to show the property editor menu for a property (with options like Reset, Convert to Local Value, etc.). Previously, that was detected via a KeyBinding in XAML, which worked for text boxes but not controls like checkbox and button, which handle the key down event themselves. Now we use PreviewKeyDown instead, handling that in C# code, to work for all control types. Fixes AB#1491229
2022-03-19Brush editor popup needs to handle ESC key before VS can handle itPeter Spada
2022-03-18Merge pull request #801 from xamarin/dev/thsparks/reduce_redundant_signingthsparks
Reduce Redundant MicroBuild Signing
2022-03-18Merge pull request #798 from xamarin/dev/bretjohn/fix-1491218Bret Johnson
Set the Arrange By AutomationProperty Name correctly
2022-03-18Merge pull request #799 from xamarin/dev/bretjohn/fix-1491221Bret Johnson
Make tab order cycle for proppy controls
2022-03-18Fix typothsparks
Co-authored-by: Michael Cummings (MSFT) <mcumming@microsoft.com>
2022-03-17Merge branch 'main' of https://github.com/xamarin/Xamarin.PropertyEditing ↵thsparks
into dev/thsparks/reduce_redundant_signing
2022-03-17Revert "Use PreviewKeyDown for Ctrl+Space to show menu"Bret Johnson
This reverts commit a2e92bf834987d6e428c53cf8db31a93c04a3151.
2022-03-17Use PreviewKeyDown for Ctrl+Space to show menuBret Johnson
Ctrl+Space is the keyboard short that can be used to show the property editor menu for a property (with options like Reset, Convert to Local Value, etc.). Previously, that was detected via a KeyBinding in XAML, which worked for text boxes but not controls like checkbox and button, which handle the key down event themselves. Now we use PreviewKeyDown instead, handling that in C# code, to work for all control types. Fixes AB#1491229
2022-03-17Make tab order cycle for proppy controlsBret Johnson
Now hitting the Tab key in the last control in the property editor changes focus to the search control at the top, cycling around. And Shift-Tab in search moves to the last control. Fixes AB#1491221
2022-03-16Diable MicroBuild signing by default, then only enable it after compilation.thsparks
This way, if compilation is skipped because it the project has already been built, signing will remain turned off and we will not redundantly submit already-signed files to sign.
2022-03-15Set the Arrange By AutomationProperty Name correctlyBret Johnson
The name here should generally match the button label - it's a name, not a description. Fixes AB#1491218
2022-03-09Merge pull request #797 from ↵thsparks
xamarin/dev/thsparks/update_signing_on_property_editing Enable MicroBuild Signing
2022-03-08Merge with mainthsparks
2022-03-05Leverage Directory.Build.props and remove unnecessary configuration checks ↵thsparks
(signing pipeline only builds one configuration).
2022-03-04Enable MicroBuild Signing for Xamarin.PropertyEditing and ↵thsparks
Xamarin.PropertyEditing.Windows.csproj
2022-03-01Merge pull request #796 from xamarin/backport-pr-792-to-mainBret Johnson
[main] Reimplementation UpdateKeyViews() based in ProxyRowResponder
2022-03-01Fix commentJose Medrano
2022-03-01Caches RowCount into variable to avoid unnecessary native calls on each ↵Jose Medrano
iteration
2022-03-01Renames RowProxyResponder to ProxyResponderJose Medrano
2022-03-01Breaks DoCommandBySelector when TextNextResponderDelegate handlesJose Medrano
2022-03-01Adds some missing ProxyRespondersJose Medrano
2022-03-01Refactoring in OnPreviousResponderRequested and OnNextResponderRequestedJose Medrano
2022-03-01Fixes typoJose Medrano
2022-03-01Moves ProxyResponder button to a new classJose Medrano
2022-03-01Fixes break only when proxy is handledJose Medrano
2022-03-01Fixes NRE when viewmodel is not setJose Medrano
2022-03-01Naming changesJose Medrano
2022-03-01Makes EntryPropertyEditor use ProxyRowResponderJose Medrano
2022-03-01Makes some basic editors use ProxyRowResponder in their viewsJose Medrano
2022-03-01FocusableButton and TextFieldSmallButtonContainer are a ProxyResponderJose Medrano
2022-03-01Makes BasePointEditorControl first and last view use ProxyRowResponderJose Medrano
2022-03-01Makes RatioEditorControl main view use ProxyRowResponderJose Medrano
2022-03-01NumericSpinEditor uses the internal view ResponderProxyJose Medrano