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-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
2022-03-01Makes first and last focusable view in BasePathEditorControl use ↵Jose Medrano
ProxyRowResponder
2022-03-01Makes FocusableComboBox a ProxyResponder classJose Medrano
2022-03-01Makes FocusablePopupButton a ProxyResponder classJose Medrano
2022-03-01Makes NumericTextField a ProxyResponder classJose Medrano
2022-03-01Creates ProxyResponderButton and makes base of FocusableBooleanButtonJose Medrano
2022-03-01Removes old hack to set next responder for one based in KeyDown eventsJose Medrano
2022-03-01Creates ProxyRowResponder manage responder between rows in NSOutlineViewJose Medrano
2022-03-01Fixes NRE if get row view is not ready to get the view and focusJose Medrano
2022-02-25Merge pull request #795 from xamarin/backport-pr-794-to-mainBret Johnson
[main] Add cast to fix bug with numeric conversion
2022-02-25Add cast to fix bug with numeric conversionbackport-pr-794-to-mainBret Johnson
With the macos P13 API type changes, an issue was introduced since casting an ObjCRuntime.nfloat to an nint (aka IntPtr) doesn't work properly - (nint)(ObjCRuntime.nfloat)23 for instance will evaluate to 0x4037000000000000, the floating point bits are just reinterpreted as an int rather than actually being converted. That in turn caused huge sizes for width and height causing new CGBitmapContext to throw an exception. Adding the double cast here fixes this, for now. Soon ObjCRuntime.nfloat will go away, replaced by System.Runtime.InteropServices.NFloat, but for now this workaround makes us work. Fixes: AB#1487089 AB#1487070 AB#1487089
2022-02-17Merge pull request #791 from xamarin/dev/sandy/nfloat-movingBret Johnson
Build: Use a 6.0.200 SDK and macos workload P13