├── .build └── automation │ ├── scripts │ └── Invoke-Git.psm1 │ ├── stages │ ├── compliance.yml │ ├── localization-handback.yml │ ├── localization-handoff.yml │ ├── merge-translations-update.yml │ └── validate.yml │ └── variables.yml ├── .config ├── CredScanSuppressions.json ├── LocProject.json ├── guardian │ ├── CHS.gdnsuppress │ ├── CHT.gdnsuppress │ ├── CSY.gdnsuppress │ ├── DEU.gdnsuppress │ ├── ESN.gdnsuppress │ ├── FRA.gdnsuppress │ ├── ITA.gdnsuppress │ ├── JPN.gdnsuppress │ ├── KOR.gdnsuppress │ ├── PLK.gdnsuppress │ ├── PTB.gdnsuppress │ ├── RUS.gdnsuppress │ ├── TRK.gdnsuppress │ └── source.gdnsuppress ├── policheck │ ├── Policheck.Exclusions.CHS.xml │ ├── Policheck.Exclusions.CHT.xml │ ├── Policheck.Exclusions.CSY.xml │ ├── Policheck.Exclusions.DEU.xml │ ├── Policheck.Exclusions.ESN.xml │ ├── Policheck.Exclusions.FRA.xml │ ├── Policheck.Exclusions.ITA.xml │ ├── Policheck.Exclusions.JPN.xml │ ├── Policheck.Exclusions.KOR.xml │ ├── Policheck.Exclusions.PLK.xml │ ├── Policheck.Exclusions.PTB.xml │ ├── Policheck.Exclusions.RUS.xml │ ├── Policheck.Exclusions.TRK.xml │ └── Policheck.Exclusions.xml └── tsaoptions-v2.json ├── .editorconfig ├── .github └── workflows │ ├── backport-trigger.yml │ ├── localization-pr.yml │ └── rebase-trigger.yml ├── .gitignore ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.md ├── NuGet.Config ├── README.md ├── Xamarin.PropertyEditing.Mac.Standalone ├── AppDelegate.cs ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon-128.png │ │ ├── AppIcon-128@2x.png │ │ ├── AppIcon-16.png │ │ ├── AppIcon-16@2x.png │ │ ├── AppIcon-256.png │ │ ├── AppIcon-256@2x.png │ │ ├── AppIcon-32.png │ │ ├── AppIcon-32@2x.png │ │ ├── AppIcon-512.png │ │ ├── AppIcon-512@2x.png │ │ └── Contents.json │ ├── Checkerboard0.colorset │ │ └── Contents.json │ ├── Checkerboard1.colorset │ │ └── Contents.json │ ├── Contents.json │ ├── ControlBackground.colorset │ │ └── Contents.json │ ├── DescriptionLabelColor.colorset │ │ └── Contents.json │ ├── ForegroundColor.colorset │ │ └── Contents.json │ ├── FrameBoxBackgroundColor.colorset │ │ └── Contents.json │ ├── FrameBoxBorderColor.colorset │ │ └── Contents.json │ ├── FrameBoxButtonBackgroundColor.colorset │ │ └── Contents.json │ ├── FrameBoxButtonBorderColor.colorset │ │ └── Contents.json │ ├── ListHeaderSeparatorColor.colorset │ │ └── Contents.json │ ├── PadBackgroundColor.colorset │ │ └── Contents.json │ ├── PanelTabBackground.colorset │ │ └── Contents.json │ ├── PopoverContentBackground.colorset │ │ └── Contents.json │ ├── TabBorderColor.colorset │ │ └── Contents.json │ └── ValueBlockBackgroundColor.colorset │ │ └── Contents.json ├── Entitlements.plist ├── IMockedControl.cs ├── Info.plist ├── Main.cs ├── Main.storyboard ├── MockedAppKitButton.cs ├── MockedControlButton.cs ├── MockedSampleControlButton.cs ├── ViewController.cs ├── ViewController.designer.cs └── Xamarin.PropertyEditing.Mac.Standalone.csproj ├── Xamarin.PropertyEditing.Mac ├── Controls │ ├── BaseDateTimeEditorControl.cs │ ├── BasePathEditorControl.cs │ ├── BasePointEditorControl.cs │ ├── BaseRectangleEditorControl.cs │ ├── BindingEditor │ │ ├── BaseSelectorOutlineView.cs │ │ ├── BindingEditorWindow.cs │ │ ├── BindingObjectSelectorControl.cs │ │ ├── BindingPathSelectorControl.cs │ │ ├── BindingResourceOutlineView.cs │ │ ├── BindingResourceSelectorControl.cs │ │ ├── CreateValueConverterWindow.cs │ │ ├── HeaderView.cs │ │ ├── ObjectOutlineView.cs │ │ └── PathOutlineView.cs │ ├── BooleanEditorControl.cs │ ├── BrushEditorControl.cs │ ├── CategoryContainerControl.cs │ ├── CharEditorControl.cs │ ├── CollectionEditorControl.cs │ ├── CollectionEditorWindow.cs │ ├── CollectionInlineEditorControl.cs │ ├── CombinablePropertyEditor.cs │ ├── ConstraintExtensions.cs │ ├── ControlExtensions.cs │ ├── Custom │ │ ├── AutoClosePopOver.cs │ │ ├── AutocompleteComboBox.cs │ │ ├── BasePopOverControl.cs │ │ ├── BasePopOverViewModelControl.cs │ │ ├── BrushTabViewController.cs │ │ ├── ChannelEditor.cs │ │ ├── ChannelEditorType.cs │ │ ├── ColorComponentEditor.cs │ │ ├── ColorComponentTabViewController.cs │ │ ├── ColorComponentViewController.cs │ │ ├── ColorEditorLayer.cs │ │ ├── ColorEditorView.cs │ │ ├── CommandButton.cs │ │ ├── CommandMenuItem.cs │ │ ├── CommonBrushLayer.cs │ │ ├── CommonBrushView.cs │ │ ├── CommonGradientBrushLayer.cs │ │ ├── ComponentSpinEditor.cs │ │ ├── DrawingExtensions.cs │ │ ├── DynamicBox.cs │ │ ├── EmptyBrushEditorViewController.cs │ │ ├── FocusableBooleanButton.cs │ │ ├── FocusableButton.cs │ │ ├── FocusableComboBox.cs │ │ ├── FocusablePopupButton.cs │ │ ├── HistoryLayer.cs │ │ ├── HueLayer.cs │ │ ├── MaterialBrushEditorViewController.cs │ │ ├── MaterialColorLayer.cs │ │ ├── MaterialView.cs │ │ ├── ModalWindowCloseDelegate.cs │ │ ├── NotifyingTabViewController.cs │ │ ├── NotifyingViewAdaptor.cs │ │ ├── NotifyingViewController.cs │ │ ├── NumericSpinEditor.cs │ │ ├── NumericTextField.cs │ │ ├── PopoverFocusRestoreDelegate.cs │ │ ├── PropertyButton.cs │ │ ├── PropertyTextField.cs │ │ ├── ProxyResponderButton.cs │ │ ├── RatioEditor.cs │ │ ├── ResourceBrushPropertyViewDelegate.cs │ │ ├── ResourceBrushViewController.cs │ │ ├── ResourceDataSource.cs │ │ ├── ResourceOutlineView.cs │ │ ├── ResourceOutlineViewDelegate.cs │ │ ├── ShadeLayer.cs │ │ ├── SolidColorBrushEditor.cs │ │ ├── SolidColorBrushEditorViewController.cs │ │ ├── SpinnerButton.cs │ │ ├── TabButton.cs │ │ ├── TextFieldSmallButtonContainer.cs │ │ ├── UnderlinedTabViewController.cs │ │ ├── UnfocusableButton.cs │ │ └── UnfocusableTextField.cs │ ├── CustomExpressionView.cs │ ├── DateEditorControl.cs │ ├── DateExtensions.cs │ ├── DateTimeEditorControl.cs │ ├── EditorContainer.cs │ ├── EntryPropertyEditor.cs │ ├── ErrorMessageView.cs │ ├── FilePathEditorControl.cs │ ├── GroupEditorControl.cs │ ├── IEditorView.cs │ ├── Layout.cs │ ├── NumericEditorControl.cs │ ├── ObjectEditorControl.cs │ ├── PanelHeaderEditorControl.cs │ ├── PointEditorControl.cs │ ├── PredefinedValuesEditor.cs │ ├── PropertyContainer.cs │ ├── PropertyEditorControl.cs │ ├── ProxyRowResponder.cs │ ├── RatioEditorControl.cs │ ├── RectangleEditorControl.cs │ ├── RequestResource │ │ ├── RequestResourcePanel.cs │ │ ├── RequestResourcePreviewPanel.cs │ │ ├── RequestResourceView.cs │ │ ├── ResourceTableDataSource.cs │ │ └── ResourceTableDelegate.cs │ ├── SizeEditorControl.cs │ ├── StringEditorControl.cs │ ├── ThicknessEditorControl.cs │ ├── TimeEditorControl.cs │ ├── TimeSpanEditorControl.cs │ ├── TypeEditorControl.cs │ ├── TypeSelectorControl.cs │ └── TypeSelectorWindow.cs ├── Extensions.cs ├── HostResourceProvider.cs ├── IHostResourceProvider.cs ├── Icons │ ├── warning-16.png │ ├── warning-16@2x.png │ ├── warning-16~contrast.png │ ├── warning-16~contrast@2x.png │ ├── warning-16~contrast~dark.png │ ├── warning-16~contrast~dark@2x.png │ ├── warning-16~dark.png │ ├── warning-16~dark@2x.png │ ├── warning-16~dark~sel.png │ ├── warning-16~dark~sel@2x.png │ ├── warning-16~sel.png │ └── warning-16~sel@2x.png ├── MacSystemInformation.cs ├── NSObjectFacade.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyEditingResource │ └── Contents │ │ └── Resources │ │ ├── pe-action-browse-16.png │ │ ├── pe-action-browse-16@2x.png │ │ ├── pe-action-browse-16~contrast.png │ │ ├── pe-action-browse-16~contrast@2x.png │ │ ├── pe-action-browse-16~contrast~dark.png │ │ ├── pe-action-browse-16~contrast~dark@2x.png │ │ ├── pe-action-browse-16~dark.png │ │ ├── pe-action-browse-16~dark@2x.png │ │ ├── pe-action-browse-16~dark~sel.png │ │ ├── pe-action-browse-16~dark~sel@2x.png │ │ ├── pe-action-browse-16~sel.png │ │ ├── pe-action-browse-16~sel@2x.png │ │ ├── pe-action-edit-16.png │ │ ├── pe-action-edit-16@2x.png │ │ ├── pe-action-edit-16~contrast.png │ │ ├── pe-action-edit-16~contrast@2x.png │ │ ├── pe-action-edit-16~contrast~dark.png │ │ ├── pe-action-edit-16~contrast~dark@2x.png │ │ ├── pe-action-edit-16~dark.png │ │ ├── pe-action-edit-16~dark@2x.png │ │ ├── pe-action-edit-16~dark~sel.png │ │ ├── pe-action-edit-16~dark~sel@2x.png │ │ ├── pe-action-edit-16~sel.png │ │ ├── pe-action-edit-16~sel@2x.png │ │ ├── pe-action-palette-16.png │ │ ├── pe-action-palette-16@2x.png │ │ ├── pe-action-palette-16~contrast.png │ │ ├── pe-action-palette-16~contrast@2x.png │ │ ├── pe-action-palette-16~contrast~dark.png │ │ ├── pe-action-palette-16~contrast~dark@2x.png │ │ ├── pe-action-palette-16~dark.png │ │ ├── pe-action-palette-16~dark@2x.png │ │ ├── pe-action-palette-16~dark~sel.png │ │ ├── pe-action-palette-16~dark~sel@2x.png │ │ ├── pe-action-palette-16~sel.png │ │ ├── pe-action-palette-16~sel@2x.png │ │ ├── pe-action-reveal-16.png │ │ ├── pe-action-reveal-16@2x.png │ │ ├── pe-action-reveal-16~contrast.png │ │ ├── pe-action-reveal-16~contrast@2x.png │ │ ├── pe-action-reveal-16~contrast~dark.png │ │ ├── pe-action-reveal-16~contrast~dark@2x.png │ │ ├── pe-action-reveal-16~dark.png │ │ ├── pe-action-reveal-16~dark@2x.png │ │ ├── pe-action-reveal-16~dark~sel.png │ │ ├── pe-action-reveal-16~dark~sel@2x.png │ │ ├── pe-action-reveal-16~sel.png │ │ ├── pe-action-reveal-16~sel@2x.png │ │ ├── pe-action-typography-16.png │ │ ├── pe-action-typography-16@2x.png │ │ ├── pe-action-typography-16~contrast.png │ │ ├── pe-action-typography-16~contrast@2x.png │ │ ├── pe-action-typography-16~contrast~dark.png │ │ ├── pe-action-typography-16~contrast~dark@2x.png │ │ ├── pe-action-typography-16~dark.png │ │ ├── pe-action-typography-16~dark@2x.png │ │ ├── pe-action-typography-16~dark~sel.png │ │ ├── pe-action-typography-16~dark~sel@2x.png │ │ ├── pe-action-typography-16~sel.png │ │ ├── pe-action-typography-16~sel@2x.png │ │ ├── pe-action-warning-16.png │ │ ├── pe-action-warning-16@2x.png │ │ ├── pe-action-warning-16~contrast.png │ │ ├── pe-action-warning-16~contrast@2x.png │ │ ├── pe-action-warning-16~contrast~dark.png │ │ ├── pe-action-warning-16~contrast~dark@2x.png │ │ ├── pe-action-warning-16~dark.png │ │ ├── pe-action-warning-16~dark@2x.png │ │ ├── pe-action-warning-16~dark~sel.png │ │ ├── pe-action-warning-16~dark~sel@2x.png │ │ ├── pe-action-warning-16~sel.png │ │ ├── pe-action-warning-16~sel@2x.png │ │ ├── pe-custom-expression-32.png │ │ ├── pe-custom-expression-32@2x.png │ │ ├── pe-custom-expression-32~contrast.png │ │ ├── pe-custom-expression-32~contrast@2x.png │ │ ├── pe-custom-expression-32~contrast~dark.png │ │ ├── pe-custom-expression-32~contrast~dark@2x.png │ │ ├── pe-custom-expression-32~dark.png │ │ ├── pe-custom-expression-32~dark@2x.png │ │ ├── pe-custom-expression-32~dark~sel.png │ │ ├── pe-custom-expression-32~dark~sel@2x.png │ │ ├── pe-custom-expression-32~sel.png │ │ ├── pe-custom-expression-32~sel@2x.png │ │ ├── pe-group-by-category-16.png │ │ ├── pe-group-by-category-16@2x.png │ │ ├── pe-group-by-category-16~contrast.png │ │ ├── pe-group-by-category-16~contrast@2x.png │ │ ├── pe-group-by-category-16~contrast~dark.png │ │ ├── pe-group-by-category-16~contrast~dark@2x.png │ │ ├── pe-group-by-category-16~dark.png │ │ ├── pe-group-by-category-16~dark@2x.png │ │ ├── pe-group-by-category-16~dark~sel.png │ │ ├── pe-group-by-category-16~dark~sel@2x.png │ │ ├── pe-group-by-category-16~sel.png │ │ ├── pe-group-by-category-16~sel@2x.png │ │ ├── pe-list-add-16.png │ │ ├── pe-list-add-16@2x.png │ │ ├── pe-list-add-16~contrast.png │ │ ├── pe-list-add-16~contrast@2x.png │ │ ├── pe-list-add-16~contrast~dark.png │ │ ├── pe-list-add-16~contrast~dark@2x.png │ │ ├── pe-list-add-16~dark.png │ │ ├── pe-list-add-16~dark@2x.png │ │ ├── pe-list-add-16~dark~sel.png │ │ ├── pe-list-add-16~dark~sel@2x.png │ │ ├── pe-list-add-16~sel.png │ │ ├── pe-list-add-16~sel@2x.png │ │ ├── pe-list-remove-16.png │ │ ├── pe-list-remove-16@2x.png │ │ ├── pe-list-remove-16~contrast.png │ │ ├── pe-list-remove-16~contrast@2x.png │ │ ├── pe-list-remove-16~contrast~dark.png │ │ ├── pe-list-remove-16~contrast~dark@2x.png │ │ ├── pe-list-remove-16~dark.png │ │ ├── pe-list-remove-16~dark@2x.png │ │ ├── pe-list-remove-16~dark~sel.png │ │ ├── pe-list-remove-16~dark~sel@2x.png │ │ ├── pe-list-remove-16~sel.png │ │ ├── pe-list-remove-16~sel@2x.png │ │ ├── pe-path-browse.png │ │ ├── pe-path-browse@2x.png │ │ ├── pe-path-browse~contrast.png │ │ ├── pe-path-browse~contrast@2x.png │ │ ├── pe-path-browse~contrast~dark.png │ │ ├── pe-path-browse~contrast~dark@2x.png │ │ ├── pe-path-browse~dark.png │ │ ├── pe-path-browse~dark@2x.png │ │ ├── pe-path-browse~dark~sel.png │ │ ├── pe-path-browse~dark~sel@2x.png │ │ ├── pe-path-browse~sel.png │ │ ├── pe-path-browse~sel@2x.png │ │ ├── pe-path-reveal.png │ │ ├── pe-path-reveal@2x.png │ │ ├── pe-path-reveal~contrast.png │ │ ├── pe-path-reveal~contrast@2x.png │ │ ├── pe-path-reveal~contrast~dark.png │ │ ├── pe-path-reveal~contrast~dark@2x.png │ │ ├── pe-path-reveal~dark.png │ │ ├── pe-path-reveal~dark@2x.png │ │ ├── pe-path-reveal~dark~sel.png │ │ ├── pe-path-reveal~dark~sel@2x.png │ │ ├── pe-path-reveal~sel.png │ │ ├── pe-path-reveal~sel@2x.png │ │ ├── pe-property-brush-gradient-16.png │ │ ├── pe-property-brush-gradient-16@2x.png │ │ ├── pe-property-brush-gradient-16~contrast.png │ │ ├── pe-property-brush-gradient-16~contrast@2x.png │ │ ├── pe-property-brush-gradient-16~contrast~dark.png │ │ ├── pe-property-brush-gradient-16~contrast~dark@2x.png │ │ ├── pe-property-brush-gradient-16~dark.png │ │ ├── pe-property-brush-gradient-16~dark@2x.png │ │ ├── pe-property-brush-gradient-16~dark~sel.png │ │ ├── pe-property-brush-gradient-16~dark~sel@2x.png │ │ ├── pe-property-brush-gradient-16~sel.png │ │ ├── pe-property-brush-gradient-16~sel@2x.png │ │ ├── pe-property-brush-image-16.png │ │ ├── pe-property-brush-image-16@2x.png │ │ ├── pe-property-brush-image-16~contrast.png │ │ ├── pe-property-brush-image-16~contrast@2x.png │ │ ├── pe-property-brush-image-16~contrast~dark.png │ │ ├── pe-property-brush-image-16~contrast~dark@2x.png │ │ ├── pe-property-brush-image-16~dark.png │ │ ├── pe-property-brush-image-16~dark@2x.png │ │ ├── pe-property-brush-image-16~dark~sel.png │ │ ├── pe-property-brush-image-16~dark~sel@2x.png │ │ ├── pe-property-brush-image-16~sel.png │ │ ├── pe-property-brush-image-16~sel@2x.png │ │ ├── pe-property-brush-none-16.png │ │ ├── pe-property-brush-none-16@2x.png │ │ ├── pe-property-brush-none-16~contrast.png │ │ ├── pe-property-brush-none-16~contrast@2x.png │ │ ├── pe-property-brush-none-16~contrast~dark.png │ │ ├── pe-property-brush-none-16~contrast~dark@2x.png │ │ ├── pe-property-brush-none-16~dark.png │ │ ├── pe-property-brush-none-16~dark@2x.png │ │ ├── pe-property-brush-none-16~dark~sel.png │ │ ├── pe-property-brush-none-16~dark~sel@2x.png │ │ ├── pe-property-brush-none-16~sel.png │ │ ├── pe-property-brush-none-16~sel@2x.png │ │ ├── pe-property-brush-palette-16.png │ │ ├── pe-property-brush-palette-16@2x.png │ │ ├── pe-property-brush-palette-16~contrast.png │ │ ├── pe-property-brush-palette-16~contrast@2x.png │ │ ├── pe-property-brush-palette-16~contrast~dark.png │ │ ├── pe-property-brush-palette-16~contrast~dark@2x.png │ │ ├── pe-property-brush-palette-16~dark.png │ │ ├── pe-property-brush-palette-16~dark@2x.png │ │ ├── pe-property-brush-palette-16~dark~sel.png │ │ ├── pe-property-brush-palette-16~dark~sel@2x.png │ │ ├── pe-property-brush-palette-16~sel.png │ │ ├── pe-property-brush-palette-16~sel@2x.png │ │ ├── pe-property-brush-resources-16.png │ │ ├── pe-property-brush-resources-16@2x.png │ │ ├── pe-property-brush-resources-16~contrast.png │ │ ├── pe-property-brush-resources-16~contrast@2x.png │ │ ├── pe-property-brush-resources-16~contrast~dark.png │ │ ├── pe-property-brush-resources-16~contrast~dark@2x.png │ │ ├── pe-property-brush-resources-16~dark.png │ │ ├── pe-property-brush-resources-16~dark@2x.png │ │ ├── pe-property-brush-resources-16~dark~sel.png │ │ ├── pe-property-brush-resources-16~dark~sel@2x.png │ │ ├── pe-property-brush-resources-16~sel.png │ │ ├── pe-property-brush-resources-16~sel@2x.png │ │ ├── pe-property-brush-solid-16.png │ │ ├── pe-property-brush-solid-16@2x.png │ │ ├── pe-property-brush-solid-16~contrast.png │ │ ├── pe-property-brush-solid-16~contrast@2x.png │ │ ├── pe-property-brush-solid-16~contrast~dark.png │ │ ├── pe-property-brush-solid-16~contrast~dark@2x.png │ │ ├── pe-property-brush-solid-16~dark.png │ │ ├── pe-property-brush-solid-16~dark@2x.png │ │ ├── pe-property-brush-solid-16~dark~sel.png │ │ ├── pe-property-brush-solid-16~dark~sel@2x.png │ │ ├── pe-property-brush-solid-16~sel.png │ │ ├── pe-property-brush-solid-16~sel@2x.png │ │ ├── pe-property-button-bound-mac-10.png │ │ ├── pe-property-button-bound-mac-10@2x.png │ │ ├── pe-property-button-bound-mac-10~contrast.png │ │ ├── pe-property-button-bound-mac-10~contrast@2x.png │ │ ├── pe-property-button-bound-mac-10~contrast~dark.png │ │ ├── pe-property-button-bound-mac-10~contrast~dark@2x.png │ │ ├── pe-property-button-bound-mac-10~dark.png │ │ ├── pe-property-button-bound-mac-10~dark@2x.png │ │ ├── pe-property-button-bound-mac-active-10.png │ │ ├── pe-property-button-bound-mac-active-10@2x.png │ │ ├── pe-property-button-bound-mac-active-10~contrast.png │ │ ├── pe-property-button-bound-mac-active-10~contrast@2x.png │ │ ├── pe-property-button-bound-mac-active-10~contrast~dark.png │ │ ├── pe-property-button-bound-mac-active-10~contrast~dark@2x.png │ │ ├── pe-property-button-bound-mac-active-10~dark.png │ │ ├── pe-property-button-bound-mac-active-10~dark@2x.png │ │ ├── pe-property-button-default-mac-10.png │ │ ├── pe-property-button-default-mac-10@2x.png │ │ ├── pe-property-button-default-mac-10~contrast.png │ │ ├── pe-property-button-default-mac-10~contrast@2x.png │ │ ├── pe-property-button-default-mac-10~contrast~dark.png │ │ ├── pe-property-button-default-mac-10~contrast~dark@2x.png │ │ ├── pe-property-button-default-mac-10~dark.png │ │ ├── pe-property-button-default-mac-10~dark@2x.png │ │ ├── pe-property-button-default-mac-active-10.png │ │ ├── pe-property-button-default-mac-active-10@2x.png │ │ ├── pe-property-button-default-mac-active-10~contrast.png │ │ ├── pe-property-button-default-mac-active-10~contrast@2x.png │ │ ├── pe-property-button-default-mac-active-10~contrast~dark.png │ │ ├── pe-property-button-default-mac-active-10~contrast~dark@2x.png │ │ ├── pe-property-button-default-mac-active-10~dark.png │ │ ├── pe-property-button-default-mac-active-10~dark@2x.png │ │ ├── pe-property-button-inherited-mac-10.png │ │ ├── pe-property-button-inherited-mac-10@2x.png │ │ ├── pe-property-button-inherited-mac-10~contrast.png │ │ ├── pe-property-button-inherited-mac-10~contrast@2x.png │ │ ├── pe-property-button-inherited-mac-10~contrast~dark.png │ │ ├── pe-property-button-inherited-mac-10~contrast~dark@2x.png │ │ ├── pe-property-button-inherited-mac-10~dark.png │ │ ├── pe-property-button-inherited-mac-10~dark@2x.png │ │ ├── pe-property-button-inherited-mac-active-10.png │ │ ├── pe-property-button-inherited-mac-active-10@2x.png │ │ ├── pe-property-button-inherited-mac-active-10~contrast.png │ │ ├── pe-property-button-inherited-mac-active-10~contrast@2x.png │ │ ├── pe-property-button-inherited-mac-active-10~contrast~dark.png │ │ ├── pe-property-button-inherited-mac-active-10~contrast~dark@2x.png │ │ ├── pe-property-button-inherited-mac-active-10~dark.png │ │ ├── pe-property-button-inherited-mac-active-10~dark@2x.png │ │ ├── pe-property-button-local-mac-10.png │ │ ├── pe-property-button-local-mac-10@2x.png │ │ ├── pe-property-button-local-mac-10~contrast.png │ │ ├── pe-property-button-local-mac-10~contrast@2x.png │ │ ├── pe-property-button-local-mac-10~contrast~dark.png │ │ ├── pe-property-button-local-mac-10~contrast~dark@2x.png │ │ ├── pe-property-button-local-mac-10~dark.png │ │ ├── pe-property-button-local-mac-10~dark@2x.png │ │ ├── pe-property-button-local-mac-active-10.png │ │ ├── pe-property-button-local-mac-active-10@2x.png │ │ ├── pe-property-button-local-mac-active-10~contrast.png │ │ ├── pe-property-button-local-mac-active-10~contrast@2x.png │ │ ├── pe-property-button-local-mac-active-10~contrast~dark.png │ │ ├── pe-property-button-local-mac-active-10~contrast~dark@2x.png │ │ ├── pe-property-button-local-mac-active-10~dark.png │ │ ├── pe-property-button-local-mac-active-10~dark@2x.png │ │ ├── pe-property-generic-item-16.png │ │ ├── pe-property-generic-item-16@2x.png │ │ ├── pe-property-generic-item-16~contrast.png │ │ ├── pe-property-generic-item-16~contrast@2x.png │ │ ├── pe-property-generic-item-16~contrast~dark.png │ │ ├── pe-property-generic-item-16~contrast~dark@2x.png │ │ ├── pe-property-generic-item-16~dark.png │ │ ├── pe-property-generic-item-16~dark@2x.png │ │ ├── pe-property-generic-item-16~dark~sel.png │ │ ├── pe-property-generic-item-16~dark~sel@2x.png │ │ ├── pe-property-generic-item-16~sel.png │ │ ├── pe-property-generic-item-16~sel@2x.png │ │ ├── pe-resource-editor-16.png │ │ ├── pe-resource-editor-16@2x.png │ │ ├── pe-resource-editor-16~contrast.png │ │ ├── pe-resource-editor-16~contrast@2x.png │ │ ├── pe-resource-editor-16~contrast~dark.png │ │ ├── pe-resource-editor-16~contrast~dark@2x.png │ │ ├── pe-resource-editor-16~dark.png │ │ ├── pe-resource-editor-16~dark@2x.png │ │ ├── pe-resource-editor-16~dark~sel.png │ │ ├── pe-resource-editor-16~dark~sel@2x.png │ │ ├── pe-resource-editor-16~sel.png │ │ ├── pe-resource-editor-16~sel@2x.png │ │ ├── pe-resource-editor-32.png │ │ ├── pe-resource-editor-32@2x.png │ │ ├── pe-resource-editor-32~contrast.png │ │ ├── pe-resource-editor-32~contrast@2x.png │ │ ├── pe-resource-editor-32~contrast~dark.png │ │ ├── pe-resource-editor-32~contrast~dark@2x.png │ │ ├── pe-resource-editor-32~dark.png │ │ ├── pe-resource-editor-32~dark@2x.png │ │ ├── pe-resource-editor-32~dark~sel.png │ │ ├── pe-resource-editor-32~dark~sel@2x.png │ │ ├── pe-resource-editor-32~sel.png │ │ ├── pe-resource-editor-32~sel@2x.png │ │ ├── pe-sort-alphabetically-16.png │ │ ├── pe-sort-alphabetically-16@2x.png │ │ ├── pe-sort-alphabetically-16~contrast.png │ │ ├── pe-sort-alphabetically-16~contrast@2x.png │ │ ├── pe-sort-alphabetically-16~contrast~dark.png │ │ ├── pe-sort-alphabetically-16~contrast~dark@2x.png │ │ ├── pe-sort-alphabetically-16~dark.png │ │ ├── pe-sort-alphabetically-16~dark@2x.png │ │ ├── pe-sort-alphabetically-16~dark~sel.png │ │ ├── pe-sort-alphabetically-16~dark~sel@2x.png │ │ ├── pe-sort-alphabetically-16~sel.png │ │ ├── pe-sort-alphabetically-16~sel@2x.png │ │ ├── pe-stepper-down-focus-blue.png │ │ ├── pe-stepper-down-focus-blue@2x.png │ │ ├── pe-stepper-down-focus-blue~dark.png │ │ ├── pe-stepper-down-focus-blue~dark@2x.png │ │ ├── pe-stepper-down-focus-graphite.png │ │ ├── pe-stepper-down-focus-graphite@2x.png │ │ ├── pe-stepper-down-focus-graphite~dark.png │ │ ├── pe-stepper-down-focus-graphite~dark@2x.png │ │ ├── pe-stepper-down.png │ │ ├── pe-stepper-down@2x.png │ │ ├── pe-stepper-down~dark.png │ │ ├── pe-stepper-down~dark@2x.png │ │ ├── pe-stepper-up-focus-blue.png │ │ ├── pe-stepper-up-focus-blue@2x.png │ │ ├── pe-stepper-up-focus-blue~dark.png │ │ ├── pe-stepper-up-focus-blue~dark@2x.png │ │ ├── pe-stepper-up-focus-graphite.png │ │ ├── pe-stepper-up-focus-graphite@2x.png │ │ ├── pe-stepper-up-focus-graphite~dark.png │ │ ├── pe-stepper-up-focus-graphite~dark@2x.png │ │ ├── pe-stepper-up.png │ │ ├── pe-stepper-up@2x.png │ │ ├── pe-stepper-up~dark.png │ │ └── pe-stepper-up~dark@2x.png ├── PropertyEditorPanel.cs ├── PropertyEditorPanel.designer.cs ├── PropertyEditorSelector.cs ├── PropertyGroupedEditorSelector.cs ├── PropertyInlinePreviewSelector.cs ├── PropertyList.cs ├── PropertyTableDataSource.cs ├── PropertyTableDelegate.cs ├── Storyboard.storyboard └── Xamarin.PropertyEditing.Mac.csproj ├── Xamarin.PropertyEditing.Tests ├── AddValueConverterViewModelTests.cs ├── AsyncValueTests.cs ├── AsyncWorkQueueTests.cs ├── BoolViewModelTests.cs ├── BrushPropertyViewModelTests.cs ├── BytePropertyViewModelTests.cs ├── CollectionPropertyViewModelTests.cs ├── CombinablePredefinedViewModelTests.cs ├── CommonColorTests.cs ├── ConstrainedPropertyViewModelTests.cs ├── CreateBindingViewModelTests.cs ├── CreateResourceViewModelTests.cs ├── CreateVariantViewModelTests.cs ├── EventViewModelTests.cs ├── FloatingPropertyViewModelTests.cs ├── Helpers.cs ├── IPropertyConverter.cs ├── ImageBrushPropertyViewModelTests.cs ├── IntegerPropertyViewModelTests.cs ├── LinearGradientBrushPropertyViewModelTests.cs ├── Manual │ └── BrushEditor.md ├── MaterialDesignColorViewModelTests.cs ├── MockBindingEditor.cs ├── MockBindingProvider.cs ├── MockControls │ ├── MockControl.cs │ ├── MockNSButton.cs │ ├── MockNSControl.cs │ ├── MockResourceProvider.cs │ ├── MockSampleControl.cs │ ├── MockWpfButton.cs │ └── MockWpfControl.cs ├── MockEditorProvider.cs ├── MockObjectEditor.cs ├── MockPropertyInfo │ ├── MockBrushPropertyInfo.cs │ ├── MockEnumPropertyInfo.cs │ ├── MockEventInfo.cs │ ├── MockPropertyCategories.cs │ └── MockPropertyInfo.cs ├── MockPropertyProviderTests.cs ├── MockValueConverter.cs ├── MultiAvailabilityConstraintTests.cs ├── NumericTests.cs ├── NumericViewModelTests.cs ├── ObjectPropertyViewModelTests.cs ├── ObservableLookupTests.cs ├── OrderedDictionaryTests.cs ├── PanelGroupViewModelTests.cs ├── PanelViewModelTests.cs ├── PointViewModelTests.cs ├── PredefinedValuesViewModelTests.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertiesViewModelTests.cs ├── PropertyGroupViewModelTests.cs ├── PropertyViewModelTests.cs ├── RadialGradientBrushPropertyViewModelTests.cs ├── RatioViewModelTests.cs ├── ReflectionPropertyProviderTests.cs ├── ResourceSelectorViewModelTests.cs ├── ResourceTests.cs ├── SimpleCollectionViewTests.cs ├── SizeViewModelTests.cs ├── SolidBrushPropertyViewModelTests.cs ├── StringViewModelTests.cs ├── TestContext.cs ├── ThicknessPropertyViewModelTests.cs ├── ValueInfoTests.cs └── Xamarin.PropertyEditing.Tests.csproj ├── Xamarin.PropertyEditing.Windows.Standalone ├── App.config ├── App.xaml ├── App.xaml.cs ├── IMockedControl.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MockedControlButton.cs ├── MockedSampleControlButton.cs ├── MockedWpfControlButton.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── Xamarin.PropertyEditing.Windows.Standalone.csproj ├── Xamarin.PropertyEditing.Windows ├── ArrangeModeLocalizedConverter.cs ├── AutoResizingMaskEditorControl.cs ├── BoolEditorControl.cs ├── BoolsToVisibilityConverter.cs ├── BrushBoxControl.cs ├── BrushChoiceTemplateSelector.cs ├── BrushEditorControl.cs ├── BrushTabbedEditorControl.cs ├── BrushToDarknessConverter.cs ├── ButtonEx.cs ├── ByteToDoubleConverter.cs ├── ByteToPercentageConverter.cs ├── CategoryExpander.cs ├── ChoiceControl.cs ├── CollectionEditor.cs ├── CollectionEditorWindow.xaml ├── CollectionEditorWindow.xaml.cs ├── ColorComponentBox.cs ├── ColorComponentModel.cs ├── ColorComponentToBrushConverter.cs ├── ColorComponentsEditorControl.cs ├── ColorEditorControlBase.cs ├── ColorHelper.cs ├── CombinablePredefinedValuesEditorControl.cs ├── ComboBoxEx.cs ├── CommonBrushToBrushConverter.cs ├── CommonColorToColorConverter.cs ├── CreateBindingWindow.xaml ├── CreateBindingWindow.xaml.cs ├── CreateResourceWindow.xaml ├── CreateResourceWindow.xaml.cs ├── CreateValueConverterWindow.xaml ├── CreateValueConverterWindow.xaml.cs ├── CreateVariantWindow.xaml ├── CreateVariantWindow.xaml.cs ├── CurrentColorEditorControl.cs ├── DateEditorControl.cs ├── DateToTextConverter.cs ├── DoubleToAngleConverter.cs ├── DoubleToPercentageConverter.cs ├── DoubleToQuantityConverter.cs ├── EditorPropertySelector.cs ├── EntryPopup.cs ├── EnumEditorControl.cs ├── FilterExpander.cs ├── GroupEditorControl.cs ├── HasItemsToVisibilityConverter.cs ├── HeaderedContextMenu.cs ├── HexColorConverter.cs ├── HostEnvironment.cs ├── HueEditorControl.cs ├── IPropertiesHost.cs ├── InvertedVisibilityConverter.cs ├── InvokePropertyButtonCommand.cs ├── MaterialDesignColorEditorControl.cs ├── MenuButton.cs ├── MultiplierConverter.cs ├── MultiplyMarginConverter.cs ├── NegativeThicknessConverter.cs ├── NullVisibilityConverter.cs ├── NumericEditorControl.cs ├── NumericTemplateSelector.cs ├── NumericUpDownControl.cs ├── ObjectEditorControl.cs ├── OppositeBoolConverter.cs ├── PointEditorControl.cs ├── PointHelper.cs ├── PreviewTemplateSelector.cs ├── Properties │ └── AssemblyInfo.cs ├── PropertyButton.cs ├── PropertyEditorControl.cs ├── PropertyEditorPanel.cs ├── PropertyMenuItemContainerStyleSelector.cs ├── PropertyPresenter.cs ├── RatioEditorControl.cs ├── ResourceBrushEditorControl.cs ├── ResourceSelectorWindow.xaml ├── ResourceSelectorWindow.xaml.cs ├── ShadeEditorControl.cs ├── SizeEditorControl.cs ├── SolidBrushEditorControl.cs ├── Spinner.cs ├── StringEditorControl.cs ├── TextBoxEx.cs ├── Themes │ ├── DialogResources.xaml │ ├── MenuButtonStyle.xaml │ ├── PropertyEditorPanelStyle.xaml │ ├── Resources.xaml │ ├── VS.Dark.xaml │ └── VS.Light.xaml ├── ThicknessEditorControl.cs ├── TimeEditorControl.cs ├── TimeToTextConverter.cs ├── ToggleButtonEx.cs ├── TreeViewItemEx.cs ├── TypeEditorControl.cs ├── TypeSelectorControl.xaml ├── TypeSelectorControl.xaml.cs ├── TypeSelectorWindow.xaml ├── TypeSelectorWindow.xaml.cs ├── WindowEx.cs ├── Xamarin.PropertyEditing.Windows.csproj └── XamlHelper.cs ├── Xamarin.PropertyEditing.sln ├── Xamarin.PropertyEditing.snk ├── Xamarin.PropertyEditing ├── AssignableTypesResult.cs ├── AsyncValue.cs ├── AsyncWorkQueue.cs ├── BidirectionalDictionary.cs ├── CategoryComparer.cs ├── Common │ ├── AutoResizingFlags.cs │ ├── CommonValueConverter.cs │ ├── Date.cs │ ├── FilePath.cs │ └── Time.cs ├── Controls │ ├── StringConversionExtensions.cs │ └── ValidationType.cs ├── Drawing │ ├── CommonAlignment.cs │ ├── CommonBrush.cs │ ├── CommonBrushMappingMode.cs │ ├── CommonBrushType.cs │ ├── CommonColor.cs │ ├── CommonColorInterpolationMode.cs │ ├── CommonColorToCommonBrushConverter.cs │ ├── CommonGradientBrush.cs │ ├── CommonGradientSpreadMethod.cs │ ├── CommonGradientStop.cs │ ├── CommonImageBrush.cs │ ├── CommonLinearGradientBrush.cs │ ├── CommonPoint.cs │ ├── CommonRadialGradientBrush.cs │ ├── CommonRatio.cs │ ├── CommonRectangle.cs │ ├── CommonSize.cs │ ├── CommonSolidBrush.cs │ ├── CommonStretch.cs │ ├── CommonThickness.cs │ ├── CommonTileBrush.cs │ └── CommonTileMode.cs ├── Extensions.cs ├── IAssemblyInfo.cs ├── IAvailabilityConstraint.cs ├── IBindingProvider.cs ├── ICanNavigateToSource.cs ├── IClampedPropertyInfo.cs ├── ICoerce.cs ├── IColorSpaced.cs ├── ICompleteValues.cs ├── IEditorProvider.cs ├── IEventInfo.cs ├── IGroupingList.cs ├── IHaveInputModes.cs ├── IHavePredefinedValues.cs ├── IIconProvider.cs ├── IMutableLookup.cs ├── INameableObject.cs ├── IObjectEditor.cs ├── IObjectEventEditor.cs ├── IPropertyInfo.cs ├── IProvidePath.cs ├── IReadOnlyOrderedDictionary.cs ├── IResourceProvider.cs ├── ISelfConstrainedPropertyInfo.cs ├── ITypeInfo.cs ├── IValidator.cs ├── KnownProperty.cs ├── MultiAvailabilityConstraint.cs ├── NotifyingObject.cs ├── Numeric.cs ├── ObservableCollectionEx.cs ├── ObservableLookup.cs ├── OrderedDictionary.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── GlobalAssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.cs.resx │ ├── Resources.de.resx │ ├── Resources.es.resx │ ├── Resources.fr.resx │ ├── Resources.it.resx │ ├── Resources.ja.resx │ ├── Resources.ko.resx │ ├── Resources.pl.resx │ ├── Resources.pt-BR.resx │ ├── Resources.resx │ ├── Resources.ru.resx │ ├── Resources.tr.resx │ ├── Resources.zh-Hans.resx │ └── Resources.zh-Hant.resx ├── PropertyArrangeMode.cs ├── PropertyBinding.cs ├── PropertyVariation.cs ├── PropertyVariationOption.cs ├── Reflection │ ├── ReflectionEditorProvider.cs │ ├── ReflectionEnumPropertyInfo.cs │ ├── ReflectionEventInfo.cs │ ├── ReflectionObjectEditor.cs │ └── ReflectionPropertyInfo.cs ├── Resource.cs ├── ResourceSource.cs ├── TargetPlatform.cs ├── ValueInfo.cs ├── ValueSource.cs ├── ViewModels │ ├── AddValueConverterViewModel.cs │ ├── ArrangeModeViewModel.cs │ ├── AutoResizingPropertyViewModel.cs │ ├── BrushPropertyViewModel.cs │ ├── CollectionPropertyViewModel.cs │ ├── CombinablePropertyViewModel.cs │ ├── ConstrainedPropertyViewModel.cs │ ├── CreateBindingRequestedEventArgs.cs │ ├── CreateBindingViewModel.cs │ ├── CreateResourceRequestedEventArgs.cs │ ├── CreateResourceViewModel.cs │ ├── CreateVariantEventArgs.cs │ ├── CreateVariantViewModel.cs │ ├── EditorViewModel.cs │ ├── EventViewModel.cs │ ├── IFilterable.cs │ ├── IPropertyValue.cs │ ├── MaterialColorScale.cs │ ├── MaterialDesignColorViewModel.cs │ ├── NumericPropertyViewModel.cs │ ├── ObjectPropertyViewModel.cs │ ├── ObjectTreeElement.cs │ ├── ObjectViewModel.cs │ ├── PanelViewModel.cs │ ├── PointPropertyViewModel.cs │ ├── PredefinedValuesViewModel.cs │ ├── PropertiesViewModel.cs │ ├── PropertyGroupViewModel.cs │ ├── PropertyTreeElement.cs │ ├── PropertyViewModel.cs │ ├── RatioViewModel.cs │ ├── RectanglePropertyViewModel.cs │ ├── RelayCommand.cs │ ├── ResourceRequestedEventArgs.cs │ ├── ResourceSelectorViewModel.cs │ ├── SimpleCollectionView.cs │ ├── SizePropertyViewModel.cs │ ├── SolidBrushViewModel.cs │ ├── StringPropertyViewModel.cs │ ├── ThicknessPropertyViewModel.cs │ ├── TypePropertyViewModel.cs │ └── TypeSelectorViewModel.cs └── Xamarin.PropertyEditing.csproj ├── azure-pipelines-compliance.yaml ├── azure-pipelines.yaml ├── bot-provisioning ├── dependencies.csx └── provisionator-bootstrap.sh ├── build.proj ├── global.json ├── lightup.md └── provision.sh /.config/CredScanSuppressions.json: -------------------------------------------------------------------------------- 1 | { 2 | "tool": "Credential Scanner", 3 | "suppressions": [] 4 | } 5 | -------------------------------------------------------------------------------- /.config/LocProject.json: -------------------------------------------------------------------------------- 1 | { 2 | "Projects": [ 3 | { 4 | "LanguageSet": "VS_Main_Languages", 5 | "LocItems": [ 6 | { 7 | "SourceFile": "Xamarin.PropertyEditing\\Properties\\Resources.resx", 8 | "LclFile": "loc\\{Lang}\\Xamarin.PropertyEditing\\Properties\\Resources.resx.lcl", 9 | "CopyOption": "LangIDOnName", 10 | "OutputPath": "Xamarin.PropertyEditing\\Properties" 11 | } 12 | ], 13 | "LssFiles": [], 14 | "CloneLanguageSet": "" 15 | } 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /.config/guardian/CHS.gdnsuppress: -------------------------------------------------------------------------------- 1 | { 2 | "version": "latest", 3 | "suppressionSets": { 4 | "default": { 5 | "name": "default", 6 | "createdDate": "2022-11-15 05:29:22Z", 7 | "lastUpdatedDate": "2022-11-15 05:29:22Z" 8 | } 9 | }, 10 | "results": {} 11 | } 12 | -------------------------------------------------------------------------------- /.config/guardian/CSY.gdnsuppress: -------------------------------------------------------------------------------- 1 | { 2 | "hydrated": false, 3 | "properties": { 4 | "helpUri": "https://eng.ms/docs/microsoft-security/security/azure-security/cloudai-security-fundamentals-engineering/security-integration/guardian-wiki/microsoft-guardian/general/suppressions", 5 | "hydrationStatus": "This file does not contain identifying data. It is safe to check into your repo. To hydrate this file with identifying data, run `guardian hydrate --help` and follow the guidance." 6 | }, 7 | "version": "1.0.0", 8 | "suppressionSets": { 9 | "default": { 10 | "name": "default", 11 | "createdDate": "2023-11-16 06:08:41Z", 12 | "lastUpdatedDate": "2023-11-16 06:08:41Z" 13 | } 14 | }, 15 | "results": {} 16 | } 17 | -------------------------------------------------------------------------------- /.config/guardian/DEU.gdnsuppress: -------------------------------------------------------------------------------- 1 | { 2 | "hydrated": false, 3 | "properties": { 4 | "helpUri": "https://eng.ms/docs/microsoft-security/security/azure-security/cloudai-security-fundamentals-engineering/security-integration/guardian-wiki/microsoft-guardian/general/suppressions", 5 | "hydrationStatus": "This file does not contain identifying data. It is safe to check into your repo. To hydrate this file with identifying data, run `guardian hydrate --help` and follow the guidance." 6 | }, 7 | "version": "1.0.0", 8 | "suppressionSets": { 9 | "default": { 10 | "name": "default", 11 | "createdDate": "2023-11-16 06:08:39Z", 12 | "lastUpdatedDate": "2023-11-16 06:08:39Z" 13 | } 14 | }, 15 | "results": {} 16 | } 17 | -------------------------------------------------------------------------------- /.config/guardian/ESN.gdnsuppress: -------------------------------------------------------------------------------- 1 | { 2 | "hydrated": false, 3 | "properties": { 4 | "helpUri": "https://eng.ms/docs/microsoft-security/security/azure-security/cloudai-security-fundamentals-engineering/security-integration/guardian-wiki/microsoft-guardian/general/suppressions", 5 | "hydrationStatus": "This file does not contain identifying data. It is safe to check into your repo. To hydrate this file with identifying data, run `guardian hydrate --help` and follow the guidance." 6 | }, 7 | "version": "1.0.0", 8 | "suppressionSets": { 9 | "default": { 10 | "name": "default", 11 | "createdDate": "2023-11-16 06:08:48Z", 12 | "lastUpdatedDate": "2023-11-16 06:08:48Z" 13 | } 14 | }, 15 | "results": {} 16 | } 17 | -------------------------------------------------------------------------------- /.config/guardian/FRA.gdnsuppress: -------------------------------------------------------------------------------- 1 | { 2 | "hydrated": false, 3 | "properties": { 4 | "helpUri": "https://eng.ms/docs/microsoft-security/security/azure-security/cloudai-security-fundamentals-engineering/security-integration/guardian-wiki/microsoft-guardian/general/suppressions", 5 | "hydrationStatus": "This file does not contain identifying data. It is safe to check into your repo. To hydrate this file with identifying data, run `guardian hydrate --help` and follow the guidance." 6 | }, 7 | "version": "1.0.0", 8 | "suppressionSets": { 9 | "default": { 10 | "name": "default", 11 | "createdDate": "2023-11-16 06:08:44Z", 12 | "lastUpdatedDate": "2023-11-16 06:08:44Z" 13 | } 14 | }, 15 | "results": {} 16 | } 17 | -------------------------------------------------------------------------------- /.config/guardian/ITA.gdnsuppress: -------------------------------------------------------------------------------- 1 | { 2 | "hydrated": false, 3 | "properties": { 4 | "helpUri": "https://eng.ms/docs/microsoft-security/security/azure-security/cloudai-security-fundamentals-engineering/security-integration/guardian-wiki/microsoft-guardian/general/suppressions", 5 | "hydrationStatus": "This file does not contain identifying data. It is safe to check into your repo. To hydrate this file with identifying data, run `guardian hydrate --help` and follow the guidance." 6 | }, 7 | "version": "1.0.0", 8 | "suppressionSets": { 9 | "default": { 10 | "name": "default", 11 | "createdDate": "2023-11-16 06:08:41Z", 12 | "lastUpdatedDate": "2023-11-16 06:08:41Z" 13 | } 14 | }, 15 | "results": {} 16 | } 17 | -------------------------------------------------------------------------------- /.config/guardian/JPN.gdnsuppress: -------------------------------------------------------------------------------- 1 | { 2 | "version": "latest", 3 | "suppressionSets": { 4 | "default": { 5 | "name": "default", 6 | "createdDate": "2022-11-30 02:05:20Z", 7 | "lastUpdatedDate": "2022-11-30 02:05:20Z" 8 | } 9 | }, 10 | "results": {} 11 | } 12 | -------------------------------------------------------------------------------- /.config/guardian/KOR.gdnsuppress: -------------------------------------------------------------------------------- 1 | { 2 | "hydrated": false, 3 | "properties": { 4 | "helpUri": "https://eng.ms/docs/microsoft-security/security/azure-security/cloudai-security-fundamentals-engineering/security-integration/guardian-wiki/microsoft-guardian/general/suppressions", 5 | "hydrationStatus": "This file does not contain identifying data. It is safe to check into your repo. To hydrate this file with identifying data, run `guardian hydrate --help` and follow the guidance." 6 | }, 7 | "version": "1.0.0", 8 | "suppressionSets": { 9 | "default": { 10 | "name": "default", 11 | "createdDate": "2023-11-16 06:08:44Z", 12 | "lastUpdatedDate": "2023-11-16 06:08:44Z" 13 | } 14 | }, 15 | "results": {} 16 | } 17 | -------------------------------------------------------------------------------- /.config/guardian/PLK.gdnsuppress: -------------------------------------------------------------------------------- 1 | { 2 | "hydrated": false, 3 | "properties": { 4 | "helpUri": "https://eng.ms/docs/microsoft-security/security/azure-security/cloudai-security-fundamentals-engineering/security-integration/guardian-wiki/microsoft-guardian/general/suppressions", 5 | "hydrationStatus": "This file does not contain identifying data. It is safe to check into your repo. To hydrate this file with identifying data, run `guardian hydrate --help` and follow the guidance." 6 | }, 7 | "version": "1.0.0", 8 | "suppressionSets": { 9 | "default": { 10 | "name": "default", 11 | "createdDate": "2023-11-16 06:08:46Z", 12 | "lastUpdatedDate": "2023-11-16 06:08:46Z" 13 | } 14 | }, 15 | "results": {} 16 | } 17 | -------------------------------------------------------------------------------- /.config/guardian/PTB.gdnsuppress: -------------------------------------------------------------------------------- 1 | { 2 | "hydrated": false, 3 | "properties": { 4 | "helpUri": "https://eng.ms/docs/microsoft-security/security/azure-security/cloudai-security-fundamentals-engineering/security-integration/guardian-wiki/microsoft-guardian/general/suppressions", 5 | "hydrationStatus": "This file does not contain identifying data. It is safe to check into your repo. To hydrate this file with identifying data, run `guardian hydrate --help` and follow the guidance." 6 | }, 7 | "version": "1.0.0", 8 | "suppressionSets": { 9 | "default": { 10 | "name": "default", 11 | "createdDate": "2023-11-16 06:08:47Z", 12 | "lastUpdatedDate": "2023-11-16 06:08:47Z" 13 | } 14 | }, 15 | "results": {} 16 | } 17 | -------------------------------------------------------------------------------- /.config/guardian/TRK.gdnsuppress: -------------------------------------------------------------------------------- 1 | { 2 | "hydrated": false, 3 | "properties": { 4 | "helpUri": "https://eng.ms/docs/microsoft-security/security/azure-security/cloudai-security-fundamentals-engineering/security-integration/guardian-wiki/microsoft-guardian/general/suppressions", 5 | "hydrationStatus": "This file does not contain identifying data. It is safe to check into your repo. To hydrate this file with identifying data, run `guardian hydrate --help` and follow the guidance." 6 | }, 7 | "version": "1.0.0", 8 | "suppressionSets": { 9 | "default": { 10 | "name": "default", 11 | "createdDate": "2023-11-16 06:08:56Z", 12 | "lastUpdatedDate": "2023-11-16 06:08:56Z" 13 | } 14 | }, 15 | "results": {} 16 | } 17 | -------------------------------------------------------------------------------- /.config/tsaoptions-v2.json: -------------------------------------------------------------------------------- 1 | { 2 | "codebaseName": "Xamarin.PropertyEditing_main", 3 | "notificationAliases": [ 4 | "vscx-tools-ui@microsoft.com" 5 | ], 6 | "codebaseAdmins": [ 7 | "REDMOND\\vsengxamarin" 8 | ], 9 | "instanceUrl": "https://devdiv.visualstudio.com/", 10 | "projectName": "DevDiv", 11 | "areaPath": "DevDiv\\VS Client - Tools\\UI", 12 | "iterationPath": "DevDiv", 13 | "allTools": true 14 | } 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bot-provisioning/_provisionator/ 2 | /bot-provisioning/provisionator.msbuild.props 3 | /Xamarin.PropertyEditing.Tests/packages 4 | bin 5 | obj 6 | *.DotSettings 7 | /build/.nuget/ 8 | /Xamarin.PropertyEditing.userprefs 9 | /TestResult.xml 10 | /out 11 | .vs 12 | packages 13 | .DS_Store 14 | -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### Build Status 2 | [![Build Status](https://dev.azure.com/xamarin/public/_apis/build/status/xamarin/Xamarin.PropertyEditing/Xamarin.PropertyEditing%20(Public)?branchName=main)](https://dev.azure.com/xamarin/public/_build/latest?definitionId=51&branchName=main) 3 | 4 | This repository is no longer actively maintained or developed. 5 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace Xamarin.PropertyEditing.Mac.Standalone 5 | { 6 | [Register ("AppDelegate")] 7 | public class AppDelegate : NSApplicationDelegate 8 | { 9 | public AppDelegate () 10 | { 11 | } 12 | 13 | public override void DidFinishLaunching (NSNotification notification) 14 | { 15 | // Insert code here to initialize your application 16 | } 17 | 18 | public override void WillTerminate (NSNotification notification) 19 | { 20 | // Insert code here to tear down your application 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/ControlBackground.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "reference" : "controlBackgroundColor" 11 | } 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/DescriptionLabelColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "reference" : "secondaryLabelColor" 11 | } 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Assets.xcassets/ForegroundColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "reference" : "labelColor" 11 | } 12 | } 13 | ] 14 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Entitlements.plist: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/IMockedControl.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Xamarin.PropertyEditing.Mac.Standalone 4 | { 5 | interface IMockedControl 6 | { 7 | object MockedControl { get; } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/Main.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | 3 | namespace Xamarin.PropertyEditing.Mac.Standalone 4 | { 5 | static class MainClass 6 | { 7 | static void Main (string [] args) 8 | { 9 | NSApplication.Init (); 10 | NSApplication.Main (args); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/MockedAppKitButton.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Foundation; 3 | using ObjCRuntime; 4 | using Xamarin.PropertyEditing.Tests.MockControls; 5 | 6 | namespace Xamarin.PropertyEditing.Mac.Standalone 7 | { 8 | [Foundation.Register ("MockedAppKitButton")] 9 | public class MockedAppKitButton : MockedControlButton 10 | { 11 | // Called when created from unmanaged code 12 | public MockedAppKitButton (NativeHandle handle) : base (new MockNSButton (), handle) 13 | { 14 | } 15 | 16 | // Called when created directly from a XIB file 17 | [Export ("initWithCoder:")] 18 | public MockedAppKitButton (NSCoder coder) : base (new MockNSButton (), coder) 19 | { 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac.Standalone/MockedSampleControlButton.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Foundation; 3 | using ObjCRuntime; 4 | using Xamarin.PropertyEditing.Tests.MockControls; 5 | 6 | namespace Xamarin.PropertyEditing.Mac.Standalone 7 | { 8 | [Foundation.Register ("MockedSampleControlButton")] 9 | public class MockedSampleControlButton : MockedControlButton 10 | { 11 | // Called when created from unmanaged code 12 | public MockedSampleControlButton (NativeHandle handle) : base (new MockSampleControl (), handle) 13 | { 14 | } 15 | 16 | // Called when created directly from a XIB file 17 | [Export ("initWithCoder:")] 18 | public MockedSampleControlButton (NSCoder coder) : base (new MockSampleControl (), coder) 19 | { 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Controls/Custom/BasePopOverViewModelControl.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using Xamarin.PropertyEditing.ViewModels; 5 | 6 | namespace Xamarin.PropertyEditing.Mac 7 | { 8 | internal class BasePopOverViewModelControl : BasePopOverControl 9 | { 10 | internal PropertyViewModel ViewModel { get; } 11 | 12 | public BasePopOverViewModelControl (IHostResourceProvider hostResources, PropertyViewModel viewModel, string title, string imageNamed) 13 | : base (hostResources, title, imageNamed) 14 | { 15 | if (viewModel == null) 16 | throw new ArgumentNullException (nameof (viewModel)); 17 | 18 | ViewModel = viewModel; 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Controls/Custom/ChannelEditorType.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing.Mac 2 | { 3 | internal enum ChannelEditorType 4 | { 5 | RGB, 6 | HLS, 7 | HSB, 8 | CMYK 9 | }; 10 | } 11 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Controls/Custom/EmptyBrushEditorViewController.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using CoreGraphics; 3 | using Xamarin.PropertyEditing.ViewModels; 4 | 5 | namespace Xamarin.PropertyEditing.Mac 6 | { 7 | internal class EmptyBrushEditorViewController : NotifyingViewController 8 | { 9 | public EmptyBrushEditorViewController () 10 | { 11 | PreferredContentSize = new CGSize (PreferredContentSizeWidth, PreferredContentSizeHeight); 12 | } 13 | 14 | private NSButton brushEditor; 15 | 16 | public override void LoadView () 17 | { 18 | View = this.brushEditor = new NSButton { 19 | Bordered = false, 20 | Title = Properties.Resources.NoBrush, 21 | Enabled = false 22 | }; 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Controls/Custom/ModalWindowCloseDelegate.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using AppKit; 3 | using Foundation; 4 | 5 | namespace Xamarin.PropertyEditing.Mac 6 | { 7 | internal class ModalWindowCloseDelegate : NSWindowDelegate 8 | { 9 | public NSModalResponse Response { get; set; } = NSModalResponse.Cancel; 10 | 11 | public override void WillClose (NSNotification notification) 12 | { 13 | NSApplication.SharedApplication.StopModalWithCode ((int)Response); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Controls/Custom/ProxyResponderButton.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | 3 | namespace Xamarin.PropertyEditing.Mac 4 | { 5 | internal class ProxyResponderButton : NSButton 6 | { 7 | public ProxyResponder ProxyResponder { get; set; } 8 | 9 | public override void KeyDown (NSEvent theEvent) 10 | { 11 | switch (theEvent.KeyCode) { 12 | case (int)NSKey.Tab: 13 | if (ProxyResponder != null) { 14 | if (theEvent.ModifierFlags.HasFlag(NSEventModifierMask.ShiftKeyMask)) { 15 | ProxyResponder.PreviousResponder (); 16 | } else { 17 | ProxyResponder.NextResponder (); 18 | } 19 | return; 20 | } 21 | break; 22 | } 23 | base.KeyDown (theEvent); 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Controls/DateTimeEditorControl.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Xamarin.PropertyEditing.Mac 4 | { 5 | internal class DateTimeEditorControl : BaseDateTimeEditorControl 6 | { 7 | public DateTimeEditorControl (IHostResourceProvider hostResources) 8 | : base (hostResources) 9 | { 10 | } 11 | 12 | protected override void Editor_Activated (object sender, EventArgs e) 13 | { 14 | ViewModel.Value = DatePicker.DateValue.ToDateTime (); 15 | } 16 | 17 | protected override void UpdateValue () 18 | { 19 | DatePicker.DateValue = ViewModel.Value.ToNSDate (); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Controls/Layout.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace Xamarin.PropertyEditing.Mac 3 | { 4 | internal static class Layout 5 | { 6 | internal const float GoldenRatioLeft = .38196601125f; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/IHostResourceProvider.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using AppKit; 3 | using ObjCRuntime; 4 | 5 | namespace Xamarin.PropertyEditing.Mac 6 | { 7 | public interface IHostResourceProvider 8 | { 9 | NSAppearance GetVibrantAppearance (NSAppearance appearance); 10 | 11 | NSColor GetNamedColor (string name); 12 | NSImage GetNamedImage (string name); 13 | NSFont GetNamedFont (string name, nfloat fontSize); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Icons/warning-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/Icons/warning-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Icons/warning-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/Icons/warning-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Icons/warning-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/Icons/warning-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Icons/warning-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/Icons/warning-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Icons/warning-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/Icons/warning-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Icons/warning-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/Icons/warning-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Icons/warning-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/Icons/warning-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Icons/warning-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/Icons/warning-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Icons/warning-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/Icons/warning-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Icons/warning-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/Icons/warning-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Icons/warning-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/Icons/warning-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Icons/warning-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/Icons/warning-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/NSObjectFacade.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Foundation; 3 | 4 | namespace Xamarin.PropertyEditing.Mac 5 | { 6 | internal class NSObjectFacade 7 | : NSObject 8 | { 9 | public NSObjectFacade (object obj) 10 | { 11 | Target = obj; 12 | } 13 | 14 | public object Target 15 | { 16 | get; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | 4 | // Information about this assembly is defined by the following attributes. 5 | // Change them to the values specific to your project. 6 | 7 | [assembly: AssemblyDescription ("")] 8 | [assembly: AssemblyCopyright ("Xamarin")] 9 | [assembly: AssemblyTrademark ("")] 10 | [assembly: AssemblyCulture ("")] 11 | 12 | // The following attributes are used to specify the signing key for the assembly, 13 | // if desired. See the Mono documentation for more information about signing. 14 | 15 | //[assembly: AssemblyDelaySign(false)] 16 | //[assembly: AssemblyKeyFile("")] 17 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-browse-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-edit-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-palette-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-reveal-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-typography-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-action-warning-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-custom-expression-32~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-group-by-category-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-add-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-list-remove-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-browse~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-path-reveal~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-gradient-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-image-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-none-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-palette-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-resources-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-brush-solid-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-10~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-bound-mac-active-10~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-10~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-default-mac-active-10~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-10~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-inherited-mac-active-10~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-10~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-button-local-mac-active-10~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-property-generic-item-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-resource-editor-32~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~contrast.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~contrast@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~contrast@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~contrast~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~contrast~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~contrast~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~contrast~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~dark~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~dark~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~dark~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~dark~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~sel.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-sort-alphabetically-16~sel@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-blue.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-blue@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-blue~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-blue~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-blue~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-blue~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-graphite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-graphite.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-graphite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-graphite@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-graphite~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-graphite~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-graphite~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down-focus-graphite~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-down~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-blue.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-blue@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-blue~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-blue~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-blue~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-blue~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-graphite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-graphite.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-graphite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-graphite@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-graphite~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-graphite~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-graphite~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up-focus-graphite~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up~dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up~dark.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up~dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.Mac/PropertyEditingResource/Contents/Resources/pe-stepper-up~dark@2x.png -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/PropertyEditorPanel.designer.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing.Mac 2 | { 3 | 4 | // Should subclass AppKit.NSView 5 | [Foundation.Register ("PropertyEditorPanel")] 6 | public partial class PropertyEditorPanel 7 | { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Mac/Storyboard.storyboard: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Tests/IPropertyConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Xamarin.PropertyEditing.Tests 4 | { 5 | interface IPropertyConverter 6 | { 7 | bool TryConvert (TFrom fromValue, Type toType, out object toValue); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Tests/MockPropertyInfo/MockEventInfo.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing.Tests.MockPropertyInfo 2 | { 3 | public class MockEventInfo : IEventInfo 4 | { 5 | public MockEventInfo(string name) 6 | { 7 | Name = name; 8 | } 9 | 10 | public string Name { get; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Tests/MockPropertyInfo/MockPropertyCategories.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing.Tests.MockPropertyInfo 2 | { 3 | public static class MockPropertyCategories 4 | { 5 | public static string None = ""; 6 | public static string Action = nameof (Action); 7 | public static string Appearance = nameof (Appearance); 8 | public static string Behavior = nameof (Behavior); 9 | public static string Content = nameof (Content); 10 | public static string Layout = nameof (Layout); 11 | public static string Touch = nameof (Touch); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Tests/MockValueConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Xamarin.PropertyEditing.Tests 8 | { 9 | internal class MockValueConverter 10 | { 11 | } 12 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Tests/StringViewModelTests.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using NUnit.Framework; 4 | using Xamarin.PropertyEditing.ViewModels; 5 | 6 | namespace Xamarin.PropertyEditing.Tests 7 | { 8 | [TestFixture] 9 | internal class StringViewModelTests 10 | : PropertyViewModelTests 11 | { 12 | protected override StringPropertyViewModel GetViewModel (TargetPlatform platform, IPropertyInfo property, IEnumerable editors) 13 | { 14 | return new StringPropertyViewModel (platform, property, editors); 15 | } 16 | 17 | protected override string GetRandomTestValue (Random rand) 18 | { 19 | return rand.Next (Int32.MaxValue).ToString (); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows.Standalone/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows.Standalone/App.xaml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows.Standalone/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Configuration; 4 | using System.Data; 5 | using System.Linq; 6 | using System.Threading.Tasks; 7 | using System.Windows; 8 | 9 | namespace Xamarin.PropertyEditing.Windows.Standalone 10 | { 11 | /// 12 | /// Interaction logic for App.xaml 13 | /// 14 | public partial class App : Application 15 | { 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows.Standalone/IMockedControl.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing.Windows.Standalone 2 | { 3 | interface IMockedControl 4 | { 5 | object MockedControl { get; } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows.Standalone/MockedControlButton.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | using Xamarin.PropertyEditing.Tests.MockControls; 3 | 4 | namespace Xamarin.PropertyEditing.Windows.Standalone 5 | { 6 | public abstract class MockedControlButton : Button, IMockedControl 7 | where T : MockControl 8 | { 9 | public MockedControlButton(T mockedControl) 10 | { 11 | MockedControl = mockedControl; 12 | } 13 | 14 | public T MockedControl { get; } 15 | 16 | object IMockedControl.MockedControl => MockedControl; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows.Standalone/MockedSampleControlButton.cs: -------------------------------------------------------------------------------- 1 | using System.Threading.Tasks; 2 | using Xamarin.PropertyEditing.Drawing; 3 | using Xamarin.PropertyEditing.Tests.MockControls; 4 | using Xamarin.PropertyEditing.Tests.MockPropertyInfo; 5 | 6 | namespace Xamarin.PropertyEditing.Windows.Standalone 7 | { 8 | public class MockedSampleControlButton : MockedControlButton 9 | { 10 | public MockedSampleControlButton () : base (new MockSampleControl ()) 11 | { 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows.Standalone/MockedWpfControlButton.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Controls; 2 | using Xamarin.PropertyEditing.Tests.MockControls; 3 | 4 | namespace Xamarin.PropertyEditing.Windows.Standalone 5 | { 6 | 7 | public class MockedWpfButton: MockedControlButton { 8 | public MockedWpfButton() : base(new MockWpfButton()) { } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows.Standalone/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/BoolEditorControl.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Xamarin.PropertyEditing.Windows 8 | { 9 | public class BoolEditorControl 10 | : PropertyEditorControl 11 | { 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/ButtonEx.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Automation.Peers; 3 | using System.Windows.Controls; 4 | 5 | namespace Xamarin.PropertyEditing.Windows 6 | { 7 | internal class ButtonEx 8 | : Button 9 | { 10 | protected override AutomationPeer OnCreateAutomationPeer () 11 | { 12 | return new ButtonExAutomationPeer (this); 13 | } 14 | 15 | private class ButtonExAutomationPeer 16 | : ButtonAutomationPeer 17 | { 18 | public ButtonExAutomationPeer (Button owner) 19 | : base (owner) 20 | { 21 | } 22 | 23 | protected override bool IsControlElementCore () 24 | { 25 | return base.IsControlElementCore () && Owner.IsVisible; 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/ColorComponentModel.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing.Windows 2 | { 3 | internal enum ColorComponentModel 4 | { 5 | HLS, 6 | HSB, 7 | RGB, 8 | CMYK 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/ColorHelper.cs: -------------------------------------------------------------------------------- 1 | using System.Windows.Media; 2 | using Xamarin.PropertyEditing.Drawing; 3 | 4 | namespace Xamarin.PropertyEditing.Windows 5 | { 6 | internal static class ColorHelper 7 | { 8 | public static Color ToColor (this CommonColor commonColor) 9 | => Color.FromArgb (commonColor.A, commonColor.R, commonColor.G, commonColor.B); 10 | 11 | public static CommonColor ToCommonColor (this Color color) 12 | => new CommonColor (color.R, color.G, color.B, color.A); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/DateEditorControl.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Xamarin.PropertyEditing.Windows 8 | { 9 | class DateEditorControl : PropertyEditorControl 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/EnumEditorControl.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing.Windows 2 | { 3 | internal class EnumEditorControl 4 | : PropertyEditorControl 5 | { 6 | public EnumEditorControl () 7 | { 8 | DefaultStyleKey = typeof(EnumEditorControl); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/IPropertiesHost.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Xamarin.PropertyEditing.Windows 8 | { 9 | internal interface IPropertiesHost 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/InvertedVisibilityConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows; 4 | using System.Windows.Data; 5 | 6 | namespace Xamarin.PropertyEditing.Windows 7 | { 8 | internal class InvertedVisibilityConverter 9 | : IValueConverter 10 | { 11 | public object Convert (object value, Type targetType, object parameter, CultureInfo culture) 12 | { 13 | return ((Visibility) value == Visibility.Collapsed) ? Visibility.Visible : Visibility.Collapsed; 14 | } 15 | 16 | public object ConvertBack (object value, Type targetType, object parameter, CultureInfo culture) 17 | { 18 | throw new NotImplementedException (); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/InvokePropertyButtonCommand.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows.Input; 3 | 4 | namespace Xamarin.PropertyEditing.Windows 5 | { 6 | internal class InvokePropertyButtonCommand 7 | : ICommand 8 | { 9 | public event EventHandler CanExecuteChanged; 10 | 11 | public bool CanExecute (object parameter) 12 | { 13 | return (parameter is PropertyButton); 14 | } 15 | 16 | public void Execute (object parameter) 17 | { 18 | ((PropertyButton)parameter).ShowMenu(); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/MaterialDesignColorEditorControl.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace Xamarin.PropertyEditing.Windows 4 | { 5 | internal class MaterialDesignColorEditorControl 6 | : PropertyEditorControl 7 | { 8 | static MaterialDesignColorEditorControl () 9 | { 10 | FocusableProperty.OverrideMetadata (typeof (MaterialDesignColorEditorControl), new FrameworkPropertyMetadata (false)); 11 | DefaultStyleKeyProperty.OverrideMetadata (typeof (MaterialDesignColorEditorControl), new FrameworkPropertyMetadata (typeof (MaterialDesignColorEditorControl))); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/NullVisibilityConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows; 4 | using System.Windows.Data; 5 | 6 | namespace Xamarin.PropertyEditing.Windows 7 | { 8 | internal class NullVisibilityConverter 9 | : IValueConverter 10 | { 11 | public object Convert (object value, Type targetType, object parameter, CultureInfo culture) 12 | { 13 | if (value == null) 14 | return Visibility.Collapsed; 15 | 16 | return Visibility.Visible; 17 | } 18 | 19 | public object ConvertBack (object value, Type targetType, object parameter, CultureInfo culture) 20 | { 21 | throw new NotSupportedException(); 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/NumericEditorControl.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing.Windows 2 | { 3 | public class NumericEditorControl 4 | : PropertyEditorControl 5 | { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/OppositeBoolConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Data; 4 | 5 | namespace Xamarin.PropertyEditing.Windows 6 | { 7 | internal class OppositeBoolConverter 8 | : IValueConverter 9 | { 10 | public object Convert (object value, Type targetType, object parameter, CultureInfo culture) 11 | { 12 | if (value == null || !(value is bool)) 13 | return null; 14 | 15 | return !(bool)value; 16 | } 17 | 18 | public object ConvertBack (object value, Type targetType, object parameter, CultureInfo culture) 19 | { 20 | throw new NotImplementedException (); 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/PointEditorControl.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Xamarin.PropertyEditing.Windows 8 | { 9 | class PointEditorControl : PropertyEditorControl 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/PointHelper.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using Xamarin.PropertyEditing.Drawing; 3 | 4 | namespace Xamarin.PropertyEditing.Windows 5 | { 6 | internal static class PointHelper 7 | { 8 | public static Point ToPoint (this CommonPoint point) => new Point(point.X, point.Y); 9 | public static CommonPoint ToCommonPoint (this Point point) => new CommonPoint (point.X, point.Y); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.InteropServices; 3 | 4 | [assembly: AssemblyTitle ("Xamarin.PropertyEditing.Windows")] 5 | [assembly: ComVisible (false)] 6 | [assembly: Guid ("60af04be-1b6b-411b-bcba-c95eafbd7ac0")] -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/ResourceBrushEditorControl.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | using System.Windows.Controls; 3 | using Xamarin.PropertyEditing.ViewModels; 4 | 5 | namespace Xamarin.PropertyEditing.Windows 6 | { 7 | class ResourceBrushEditorControl : PropertyEditorControl 8 | { 9 | static ResourceBrushEditorControl () 10 | { 11 | DefaultStyleKeyProperty.OverrideMetadata (typeof (ResourceBrushEditorControl), new FrameworkPropertyMetadata (typeof (ResourceBrushEditorControl))); 12 | } 13 | 14 | BrushPropertyViewModel ViewModel => DataContext as BrushPropertyViewModel; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/SizeEditorControl.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Xamarin.PropertyEditing.Windows 8 | { 9 | class SizeEditorControl : PropertyEditorControl 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/StringEditorControl.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows; 3 | using System.Windows.Controls; 4 | using System.Windows.Input; 5 | 6 | namespace Xamarin.PropertyEditing.Windows 7 | { 8 | [TemplatePart (Name = "TextBox", Type = typeof(TextBox))] 9 | public class StringEditorControl 10 | : PropertyEditorControl 11 | { 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/Themes/DialogResources.xaml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 9 | 10 | 13 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/ThicknessEditorControl.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Windows; 7 | 8 | namespace Xamarin.PropertyEditing.Windows 9 | { 10 | class ThicknessEditorControl : PropertyEditorControl 11 | { 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.Windows/TimeEditorControl.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Xamarin.PropertyEditing.Windows 8 | { 9 | class TimeEditorControl : PropertyEditorControl 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/Xamarin.PropertyEditing/7c71c4f769f043c966cc8dc5f326d4f5acda3b85/Xamarin.PropertyEditing.snk -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/CategoryComparer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace Xamarin.PropertyEditing 5 | { 6 | internal class CategoryComparer 7 | : IComparer 8 | { 9 | public static readonly CategoryComparer Instance = new CategoryComparer(); 10 | 11 | public int Compare (string x, string y) 12 | { 13 | int result = Comparer.Default.Compare (x, y); 14 | if (result != 0 && (String.IsNullOrEmpty (x) || String.IsNullOrEmpty (y))) 15 | result *= -1; 16 | 17 | return result; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/Common/AutoResizingFlags.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Xamarin.PropertyEditing.Common 4 | { 5 | [Flags] 6 | public enum AutoResizingFlags 7 | { 8 | None = 0, 9 | FlexibleLeftMargin = 1 << 0, 10 | FlexibleWidth = 1 << 1, 11 | FlexibleRightMargin = 1 << 2, 12 | FlexibleTopMargin = 1 << 3, 13 | FlexibleHeight = 1 << 4, 14 | FlexibleBottomMargin = 1 << 5, 15 | FlexibleMargins = FlexibleBottomMargin | FlexibleTopMargin | FlexibleLeftMargin | FlexibleRightMargin, 16 | FlexibleDimensions = FlexibleHeight | FlexibleWidth, 17 | All = FlexibleMargins | FlexibleDimensions 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/Common/CommonValueConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Xamarin.PropertyEditing.Common 8 | { 9 | public static class CommonValueConverter 10 | { 11 | } 12 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/Controls/ValidationType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Xamarin.PropertyEditing 4 | { 5 | public enum ValidationType 6 | { 7 | Decimal, 8 | Int, 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/Drawing/CommonBrushMappingMode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Xamarin.PropertyEditing.Drawing 4 | { 5 | /// 6 | /// Specifies the coordinate system used by a brush. 7 | /// 8 | [Serializable] 9 | public enum CommonBrushMappingMode 10 | { 11 | /// 12 | /// The coordinate system is not relative to a bounding box. 13 | /// 14 | Absolute, 15 | /// 16 | /// The coordinate system is relative to a bounding box. 17 | /// 18 | RelativeToBoundingBox 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/Drawing/CommonBrushType.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Xamarin.PropertyEditing.Drawing 4 | { 5 | public enum CommonBrushType 6 | { 7 | NoBrush, 8 | Solid, 9 | MaterialDesign, 10 | Gradient, 11 | Tile, 12 | Resource 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/Drawing/CommonColorInterpolationMode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Xamarin.PropertyEditing.Drawing 4 | { 5 | /// 6 | /// Determines how the colors in a gradient are interpolated. 7 | /// 8 | [Serializable] 9 | public enum CommonColorInterpolationMode 10 | { 11 | /// 12 | /// Colors are interpolated in the scRGB color space. 13 | /// 14 | ScRgbLinearInterpolation, 15 | /// 16 | /// Colors are interpolated in the sRGB color space. 17 | /// 18 | SRgbLinearInterpolation 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/IClampedPropertyInfo.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing 2 | { 3 | public interface IClampedPropertyInfo 4 | { 5 | IPropertyInfo MaximumProperty { get; } 6 | IPropertyInfo MinimumProperty { get; } 7 | } 8 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/ICoerce.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing 2 | { 3 | public interface ICoerce 4 | { 5 | T CoerceValue (T value); 6 | } 7 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/IColorSpaced.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace Xamarin.PropertyEditing 4 | { 5 | // TODO: Add support for predefined color values 6 | public interface IColorSpaced 7 | { 8 | IReadOnlyList ColorSpaces { get; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/IEventInfo.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing 2 | { 3 | public interface IEventInfo 4 | { 5 | string Name { get; } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/IGroupingList.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Collections.Specialized; 4 | using System.Linq; 5 | 6 | namespace Xamarin.PropertyEditing 7 | { 8 | internal interface IGroupingList 9 | : IGrouping, IReadOnlyList 10 | { 11 | } 12 | 13 | internal class ObservableGrouping 14 | : ObservableCollectionEx, IGroupingList 15 | { 16 | public ObservableGrouping (TKey key) 17 | { 18 | Key = key; 19 | } 20 | 21 | public ObservableGrouping (IGrouping grouping) 22 | { 23 | Key = grouping.Key; 24 | AddRange (grouping); 25 | } 26 | 27 | public TKey Key 28 | { 29 | get; 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/IIconProvider.cs: -------------------------------------------------------------------------------- 1 | using System.IO; 2 | using System.Threading.Tasks; 3 | 4 | namespace Xamarin.PropertyEditing 5 | { 6 | public interface IIconProvider 7 | { 8 | /// 9 | /// Gets an icon for the given . 10 | /// 11 | /// The types to get an icon for. 12 | /// 13 | /// The types provided in may not be the same. 14 | /// If they aren't, you should return a generic icon (VS uses an XML Tag). 15 | /// 16 | Task GetTypeIconAsync (ITypeInfo[] types); 17 | } 18 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/INameableObject.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Xamarin.PropertyEditing 8 | { 9 | /// 10 | /// light-up interface for objects which have names. 11 | /// 12 | /// 13 | /// Don't also expose a name property through . 14 | /// 15 | public interface INameableObject 16 | { 17 | Task GetNameAsync (); 18 | Task SetNameAsync (string name); 19 | } 20 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/IProvidePath.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Xamarin.PropertyEditing 8 | { 9 | interface IProvidePath 10 | { 11 | IReadOnlyList GetItemParents (object item); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/IReadOnlyOrderedDictionary.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | 4 | namespace Cadenza.Collections 5 | { 6 | internal interface IReadOnlyOrderedDictionary 7 | : IReadOnlyDictionary 8 | { 9 | KeyValuePair this[int index] { get; } 10 | 11 | int IndexOf (TKey key); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/ISelfConstrainedPropertyInfo.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Xamarin.PropertyEditing 4 | { 5 | // Might want to replace constraints with a more generic interface, similar to availability 6 | public interface ISelfConstrainedPropertyInfo 7 | { 8 | T MaxValue { get; } 9 | T MinValue { get; } 10 | } 11 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/IValidator.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing 2 | { 3 | public interface IValidator 4 | { 5 | bool IsValid (T value); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/KnownProperty.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing 2 | { 3 | public abstract class KnownProperty 4 | { 5 | } 6 | 7 | public class KnownProperty 8 | : KnownProperty 9 | { 10 | } 11 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/NotifyingObject.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel; 2 | using System.Runtime.CompilerServices; 3 | 4 | namespace Xamarin.PropertyEditing 5 | { 6 | internal abstract class NotifyingObject 7 | : INotifyPropertyChanged 8 | { 9 | public event PropertyChangedEventHandler PropertyChanged; 10 | 11 | protected virtual void OnPropertyChanged ([CallerMemberName] string propertyName = null) 12 | { 13 | PropertyChanged?.Invoke (this, new PropertyChangedEventArgs (propertyName)); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/Properties/GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | 3 | [assembly: AssemblyDescription ("")] 4 | [assembly: AssemblyCopyright ("Copyright © 2017 Microsoft Corporation")] 5 | [assembly: AssemblyTrademark ("")] 6 | [assembly: AssemblyCulture ("")] 7 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/PropertyArrangeMode.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace Xamarin.PropertyEditing 3 | { 4 | public enum PropertyArrangeMode 5 | { 6 | Name = 0, 7 | Category = 1, 8 | ValueSource = 2 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/PropertyBinding.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing 2 | { 3 | public static class PropertyBinding 4 | { 5 | public static readonly KnownProperty PathProperty = new KnownProperty(); 6 | public static readonly KnownProperty SourceProperty = new KnownProperty(); 7 | public static readonly KnownProperty SourceParameterProperty = new KnownProperty (); 8 | public static readonly KnownProperty ConverterProperty = new KnownProperty(); 9 | public static readonly KnownProperty TypeLevelProperty = new KnownProperty (); 10 | } 11 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/ViewModels/CreateBindingRequestedEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Xamarin.PropertyEditing.ViewModels 4 | { 5 | internal class CreateBindingRequestedEventArgs 6 | : EventArgs 7 | { 8 | public object BindingObject 9 | { 10 | get; 11 | set; 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/ViewModels/CreateResourceRequestedEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace Xamarin.PropertyEditing.ViewModels 3 | { 4 | internal class CreateResourceRequestedEventArgs 5 | : EventArgs 6 | { 7 | public ResourceSource Source 8 | { 9 | get; 10 | set; 11 | } 12 | 13 | public string Name 14 | { 15 | get; 16 | set; 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/ViewModels/CreateVariantEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Threading.Tasks; 3 | 4 | namespace Xamarin.PropertyEditing.ViewModels 5 | { 6 | internal class CreateVariantEventArgs 7 | : EventArgs 8 | { 9 | public Task Variation 10 | { 11 | get; 12 | set; 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/ViewModels/IFilterable.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing.ViewModels 2 | { 3 | internal interface IFilterable 4 | { 5 | string FilterText { get; set; } 6 | 7 | bool HasChildElements { get; } 8 | } 9 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/ViewModels/IPropertyValue.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | namespace Xamarin.PropertyEditing.ViewModels 3 | { 4 | internal interface IPropertyValue 5 | { 6 | object Value { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/ViewModels/ObjectViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace Xamarin.PropertyEditing.ViewModels 2 | { 3 | internal class ObjectViewModel 4 | : PropertiesViewModel 5 | { 6 | public ObjectViewModel (TargetPlatform targetPlatform) 7 | : base (targetPlatform) 8 | { 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/ViewModels/ResourceRequestedEventArgs.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace Xamarin.PropertyEditing.ViewModels 4 | { 5 | internal class ResourceRequestedEventArgs 6 | : EventArgs 7 | { 8 | public Resource Resource 9 | { 10 | get; 11 | set; 12 | } 13 | } 14 | } -------------------------------------------------------------------------------- /Xamarin.PropertyEditing/ViewModels/StringPropertyViewModel.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace Xamarin.PropertyEditing.ViewModels 4 | { 5 | internal class StringPropertyViewModel 6 | : PropertyViewModel 7 | { 8 | public StringPropertyViewModel (TargetPlatform platform, IPropertyInfo property, IEnumerable editors, PropertyVariation variation = null) 9 | : base (platform, property, editors, variation) 10 | { 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "6.0.300" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /provision.sh: -------------------------------------------------------------------------------- 1 | DEFAULT_CSX= 2 | 3 | if ! echo "$@" | grep -q 'csx' 4 | then 5 | DEFAULT_CSX=bot-provisioning/dependencies.csx 6 | fi 7 | 8 | bot-provisioning/provisionator-bootstrap.sh $DEFAULT_CSX $@ 9 | --------------------------------------------------------------------------------