├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── documents ├── referencing-xaml-designer-extensibility.md ├── toolbox-population.md ├── xaml-designer-extensibility-migration-architecture.png ├── xaml-designer-extensibility-migration.md └── xaml-suggested-actions │ ├── xaml-designer-suggested-actions-extensibility-behaviors.md │ ├── xaml-designer-suggested-actions-extensibility-customization.md │ ├── xaml-designer-suggested-actions-extensibility-features.md │ ├── xaml-designer-suggested-actions-extensibility-nonvisualelements.md │ ├── xaml-designer-suggested-actions-extensibility-tokens.md │ ├── xaml-designer-suggested-actions-extensibility.md │ ├── xaml-designer-suggested-actions-provider-inheritance.md │ ├── xaml-suggested-actions-2.png │ ├── xaml-suggested-actions-behaviors.png │ ├── xaml-suggested-actions-command.png │ ├── xaml-suggested-actions-documentation.png │ ├── xaml-suggested-actions-link.png │ ├── xaml-suggested-actions-no-behaviors.png │ ├── xaml-suggested-actions-property.png │ ├── xaml-suggested-actions-propertyWithDialog.png │ ├── xaml-suggested-actions-selectableAction.png │ ├── xaml-suggested-actions.png │ ├── xaml-suggested-customAction.png │ ├── xaml-suggested-customActionGroup.png │ ├── xaml-suggested-customActionProviderBase.png │ └── xaml-suggested-customSuggestedActionProvider.png └── samples └── CustomControlLibrary.WpfCore ├── AddReferenceDemo └── AddReferenceDemo.csproj ├── CustomControlLibrary.WpfCore.DesignTools ├── BrushExtendedPropertyValueEditor.cs ├── ColorsList.cs ├── ColorsListControl.xaml ├── ColorsListControl.xaml.cs ├── ComplexProxy.cs ├── ComplexProxyEditor.cs ├── ComplexProxyEditorResources.cs ├── ComplexProxyEditorResources.xaml ├── ComplexProxyTypeConverter.cs ├── CustomButtonDefaultInitializer.cs ├── CustomButtonParentAdapter.cs ├── CustomButtonPlacementAdapter.cs ├── CustomComboBoxAdornerProvider.cs ├── CustomComboBoxDesignModeValueProvider.cs ├── CustomContextMenuProvider.cs ├── CustomControlLibrary.WpfCore.DesignTools.csproj ├── DateInlinePropertyValueEditor.cs ├── EditorResources.cs ├── EditorResources.xaml ├── FileBrowserDialogPropertyValueEditor.cs ├── Metadata.cs ├── OpacitySliderAdornerProvider.cs ├── Properties │ └── AssemblyInfo.cs └── VSThemeAPIDemoAdornerProvider.cs ├── CustomControlLibrary.WpfCore.sln ├── CustomControlLibrary.WpfCore ├── Complex.cs ├── ComplexTypeConverter.cs ├── CustomButton.cs ├── CustomComboBox.cs ├── CustomControlLibrary.WpfCore.csproj └── VisualStudioToolsManifest.xml ├── DemoApplication ├── App.xaml ├── App.xaml.cs ├── DemoApplication.csproj ├── MainWindow.xaml └── MainWindow.xaml.cs └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/SECURITY.md -------------------------------------------------------------------------------- /documents/referencing-xaml-designer-extensibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/referencing-xaml-designer-extensibility.md -------------------------------------------------------------------------------- /documents/toolbox-population.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/toolbox-population.md -------------------------------------------------------------------------------- /documents/xaml-designer-extensibility-migration-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-designer-extensibility-migration-architecture.png -------------------------------------------------------------------------------- /documents/xaml-designer-extensibility-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-designer-extensibility-migration.md -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-designer-suggested-actions-extensibility-behaviors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-designer-suggested-actions-extensibility-behaviors.md -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-designer-suggested-actions-extensibility-customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-designer-suggested-actions-extensibility-customization.md -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-designer-suggested-actions-extensibility-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-designer-suggested-actions-extensibility-features.md -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-designer-suggested-actions-extensibility-nonvisualelements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-designer-suggested-actions-extensibility-nonvisualelements.md -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-designer-suggested-actions-extensibility-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-designer-suggested-actions-extensibility-tokens.md -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-designer-suggested-actions-extensibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-designer-suggested-actions-extensibility.md -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-designer-suggested-actions-provider-inheritance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-designer-suggested-actions-provider-inheritance.md -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-actions-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-actions-2.png -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-actions-behaviors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-actions-behaviors.png -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-actions-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-actions-command.png -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-actions-documentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-actions-documentation.png -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-actions-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-actions-link.png -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-actions-no-behaviors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-actions-no-behaviors.png -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-actions-property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-actions-property.png -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-actions-propertyWithDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-actions-propertyWithDialog.png -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-actions-selectableAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-actions-selectableAction.png -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-actions.png -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-customAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-customAction.png -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-customActionGroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-customActionGroup.png -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-customActionProviderBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-customActionProviderBase.png -------------------------------------------------------------------------------- /documents/xaml-suggested-actions/xaml-suggested-customSuggestedActionProvider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/documents/xaml-suggested-actions/xaml-suggested-customSuggestedActionProvider.png -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/AddReferenceDemo/AddReferenceDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/AddReferenceDemo/AddReferenceDemo.csproj -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/BrushExtendedPropertyValueEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/BrushExtendedPropertyValueEditor.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ColorsList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ColorsList.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ColorsListControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ColorsListControl.xaml -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ColorsListControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ColorsListControl.xaml.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ComplexProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ComplexProxy.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ComplexProxyEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ComplexProxyEditor.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ComplexProxyEditorResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ComplexProxyEditorResources.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ComplexProxyEditorResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ComplexProxyEditorResources.xaml -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ComplexProxyTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/ComplexProxyTypeConverter.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomButtonDefaultInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomButtonDefaultInitializer.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomButtonParentAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomButtonParentAdapter.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomButtonPlacementAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomButtonPlacementAdapter.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomComboBoxAdornerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomComboBoxAdornerProvider.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomComboBoxDesignModeValueProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomComboBoxDesignModeValueProvider.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomContextMenuProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomContextMenuProvider.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomControlLibrary.WpfCore.DesignTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/CustomControlLibrary.WpfCore.DesignTools.csproj -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/DateInlinePropertyValueEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/DateInlinePropertyValueEditor.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/EditorResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/EditorResources.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/EditorResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/EditorResources.xaml -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/FileBrowserDialogPropertyValueEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/FileBrowserDialogPropertyValueEditor.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/Metadata.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/OpacitySliderAdornerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/OpacitySliderAdornerProvider.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/VSThemeAPIDemoAdornerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.DesignTools/VSThemeAPIDemoAdornerProvider.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.sln -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore/Complex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore/Complex.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore/ComplexTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore/ComplexTypeConverter.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore/CustomButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore/CustomButton.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore/CustomComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore/CustomComboBox.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore.csproj -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore/VisualStudioToolsManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/CustomControlLibrary.WpfCore/VisualStudioToolsManifest.xml -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/DemoApplication/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/DemoApplication/App.xaml -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/DemoApplication/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/DemoApplication/App.xaml.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/DemoApplication/DemoApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/DemoApplication/DemoApplication.csproj -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/DemoApplication/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/DemoApplication/MainWindow.xaml -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/DemoApplication/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/DemoApplication/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/CustomControlLibrary.WpfCore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xaml-designer-extensibility/HEAD/samples/CustomControlLibrary.WpfCore/README.md --------------------------------------------------------------------------------