WpfDesigner设计器
.
├── WpfDesigner-master
│ ├── CONTRIBUTING.md
│ ├── ICSharpCode.SharpDevelop.snk
│ ├── LICENSE
│ ├── MyDesigner
│ │ ├── App.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── Demo.MyDesigner.csproj
│ │ ├── ExtensionMethods.cs
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── MyToolbox.cs
│ │ ├── MyToolboxView.xaml
│ │ ├── MyToolboxView.xaml.cs
│ │ └── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── MyTestAssembly
│ │ ├── Demo.MyTestAssembly.csproj
│ │ ├── MyComponentPropertyService.cs
│ │ ├── MyDesignerModel.cs
│ │ ├── MyFooEnum.cs
│ │ ├── MyWidgetHolderView.xaml
│ │ ├── MyWidgetHolderView.xaml.cs
│ │ ├── MyWidgetView.xaml
│ │ ├── MyWidgetView.xaml.cs
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ ├── README.md
│ ├── SimpleSample
│ │ ├── App.config
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── Arrow
│ │ │ ├── ArrowEnds.cs
│ │ │ ├── ArrowLine.cs
│ │ │ ├── ArrowLineBase.cs
│ │ │ ├── ArrowPolyline.cs
│ │ │ ├── ArrowheadsDemo.cs
│ │ │ └── Extensions
│ │ │ ├── ArrowLineExtension.cs
│ │ │ ├── ArrowLineExtensionBase.cs
│ │ │ ├── ArrowLinePointTrackerPlacementSupport.cs
│ │ │ └── DrawArrowLineExtension.cs
│ │ ├── Demo.SimpleSample.csproj
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── TestControl.cs
│ │ ├── ToolboxItem.cs
│ │ └── packages.config
│ ├── WpfDesign
│ │ └── Project
│ │ ├── Adorners
│ │ │ ├── AdornerPanel.cs
│ │ │ ├── AdornerPlacement.cs
│ │ │ ├── AdornerPlacementSpace.cs
│ │ │ ├── AdornerProvider.cs
│ │ │ ├── AdornerProviderClasses.cs
│ │ │ ├── IAdornerLayer.cs
│ │ │ └── RelativePlacement.cs
│ │ ├── ChangeGroup.cs
│ │ ├── Configuration
│ │ │ ├── AssemblyInfo.cs
│ │ │ └── CodeAnalysisDictionary.xml
│ │ ├── DesignContext.cs
│ │ ├── DesignItem.cs
│ │ ├── DesignItemProperty.cs
│ │ ├── DesignPanelHitTestResult.cs
│ │ ├── DesignerException.cs
│ │ ├── DrawItemExtension.cs
│ │ ├── DummyValueInsteadOfNullTypeDescriptionProvider.cs
│ │ ├── EventArgs.cs
│ │ ├── ExtensionMethods.cs
│ │ ├── Extensions
│ │ │ ├── BehaviorExtension.cs
│ │ │ ├── CustomInstanceFactory.cs
│ │ │ ├── DefaultExtension.cs
│ │ │ ├── DefaultInitializer.cs
│ │ │ ├── DesignItemInitializer.cs
│ │ │ ├── Extension.cs
│ │ │ ├── ExtensionAttribute.cs
│ │ │ ├── ExtensionForAttribute.cs
│ │ │ ├── ExtensionInterfaces.cs
│ │ │ ├── ExtensionManager.cs
│ │ │ ├── ExtensionServer.cs
│ │ │ ├── ExtensionServerAttribute.cs
│ │ │ ├── LogicalExtensionServers.cs
│ │ │ ├── MouseOverExtensionServer.cs
│ │ │ ├── NeverApplyExtensionsExtensionServer.cs
│ │ │ ├── SelectionExtensionServers.cs
│ │ │ └── XamlInstanceFactory.cs
│ │ ├── HitTestType.cs
│ │ ├── Interfaces
│ │ │ └── IObservableList.cs
│ │ ├── Metadata.cs
│ │ ├── MouseInteraction.cs
│ │ ├── PlacementAlignment.cs
│ │ ├── PlacementBehavior.cs
│ │ ├── PlacementInformation.cs
│ │ ├── PlacementOperation.cs
│ │ ├── PlacementType.cs
│ │ ├── PropertyGrid
│ │ │ ├── Category.cs
│ │ │ ├── EditorManager.cs
│ │ │ ├── PropertyEditorAttribute.cs
│ │ │ ├── PropertyNode.cs
│ │ │ ├── SortedObservableCollection.cs
│ │ │ ├── TypeEditorAttribute.cs
│ │ │ └── TypeHelper.cs
│ │ ├── ServiceContainer.cs
│ │ ├── ServiceRequiredException.cs
│ │ ├── Services
│ │ │ ├── ICopyPasteService.cs
│ │ │ └── ISelectionFilterService.cs
│ │ ├── Services.cs
│ │ ├── Tools.cs
│ │ ├── UIExtensions
│ │ │ ├── MouseHorizontalWheelEnabler.cs
│ │ │ ├── MouseHorizontalWheelEventArgs.cs
│ │ │ └── UIHelpers.cs
│ │ └── WpfDesign.csproj
│ ├── WpfDesign.Design.ExpressionBlendInteractionAddon
│ │ ├── BehaviorsEditor
│ │ │ ├── BehaviorsEditor.cs
│ │ │ └── BehaviorsEditor.xaml
│ │ ├── InteractionHelper.cs
│ │ ├── Interfaces
│ │ │ └── IComponentBehaviorsAndTriggersService.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Services
│ │ │ └── ComponentBehaviorsAndTriggersService.cs
│ │ ├── TriggersEditor
│ │ │ ├── TriggersEditor.cs
│ │ │ └── TriggersEditor.xaml
│ │ ├── WpfDesign.Designer.ExpressionBlendInteractionAddon.csproj
│ │ └── themes
│ │ ├── VersionedAssemblyResourceDictionary.cs
│ │ └── generic.xaml
│ ├── WpfDesign.Designer
│ │ ├── Project
│ │ │ ├── ArrangeDirection.cs
│ │ │ ├── BasicMetadata.cs
│ │ │ ├── CallExtension.cs
│ │ │ ├── Commands.cs
│ │ │ ├── Configuration
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ └── CodeAnalysisDictionary.xml
│ │ │ ├── Controls
│ │ │ │ ├── AdornerLayer.cs
│ │ │ │ ├── CanvasPositionHandle.cs
│ │ │ │ ├── ClearableTextBox.cs
│ │ │ │ ├── CollapsiblePanel.cs
│ │ │ │ ├── CollapsiblePanel.xaml
│ │ │ │ ├── ColorHelper.cs
│ │ │ │ ├── ColorPicker.xaml
│ │ │ │ ├── ColorPicker.xaml.cs
│ │ │ │ ├── ContainerDragHandle.cs
│ │ │ │ ├── ControlStyles.xaml
│ │ │ │ ├── DragListener.cs
│ │ │ │ ├── DropDownButton.cs
│ │ │ │ ├── EnterTextBox.cs
│ │ │ │ ├── EnumBar.xaml
│ │ │ │ ├── EnumBar.xaml.cs
│ │ │ │ ├── EnumButton.cs
│ │ │ │ ├── ErrorBalloon.cs
│ │ │ │ ├── GrayOutDesignerExceptActiveArea.cs
│ │ │ │ ├── GridAdorner.cs
│ │ │ │ ├── GridUnitSelector.xaml
│ │ │ │ ├── GridUnitSelector.xaml.cs
│ │ │ │ ├── InPlaceEditor.cs
│ │ │ │ ├── InfoTextEnterArea.cs
│ │ │ │ ├── MarginHandle.cs
│ │ │ │ ├── NullableComboBox.cs
│ │ │ │ ├── NullableComboBox.xaml
│ │ │ │ ├── NumericUpDown.cs
│ │ │ │ ├── NumericUpDown.xaml
│ │ │ │ ├── PageClone.cs
│ │ │ │ ├── PanelMoveAdorner.cs
│ │ │ │ ├── Picker.cs
│ │ │ │ ├── QuickOperationMenu.cs
│ │ │ │ ├── RelayCommand.cs
│ │ │ │ ├── RenderTransformOriginThumb.cs
│ │ │ │ ├── SelectionFrame.cs
│ │ │ │ ├── SizeDisplay.cs
│ │ │ │ ├── Thumbs
│ │ │ │ │ ├── DesignerThumb.cs
│ │ │ │ │ ├── MultiPointThumb.cs
│ │ │ │ │ ├── PointThumb.cs
│ │ │ │ │ ├── ResizeThumb.cs
│ │ │ │ │ ├── RotateThumb.cs
│ │ │ │ │ └── UserControlPointsObjectThumb.cs
│ │ │ │ ├── WindowClone.cs
│ │ │ │ ├── ZoomButtons.cs
│ │ │ │ ├── ZoomControl.cs
│ │ │ │ ├── ZoomScrollViewer.cs
│ │ │ │ └── ZoomScrollViewer.xaml
│ │ │ ├── Converters.cs
│ │ │ ├── DesignPanel.cs
│ │ │ ├── DesignSurface.cs
│ │ │ ├── DesignSurface.xaml
│ │ │ ├── DragDropExceptionHandler.cs
│ │ │ ├── ExtensionMethods.cs
│ │ │ ├── Extensions
│ │ │ │ ├── ArrangeItemsContextMenu.xaml
│ │ │ │ ├── ArrangeItemsContextMenu.xaml.cs
│ │ │ │ ├── ArrangeItemsContextMenuExtension.cs
│ │ │ │ ├── BorderForImageControl.cs
│ │ │ │ ├── BorderForInvisibleControl.cs
│ │ │ │ ├── BorderForMouseOver.cs
│ │ │ │ ├── CanvasPlacementSupport.cs
│ │ │ │ ├── CanvasPositionExtension.cs
│ │ │ │ ├── DefaultCommandsContextMenu.xaml
│ │ │ │ ├── DefaultCommandsContextMenu.xaml.cs
│ │ │ │ ├── DefaultCommandsContextMenuExtension.cs
│ │ │ │ ├── DefaultPlacementBehavior.cs
│ │ │ │ ├── DrawLineExtension.cs
│ │ │ │ ├── DrawPathExtension.cs
│ │ │ │ ├── DrawPolyLineExtension.cs
│ │ │ │ ├── EditStyleContextMenu.xaml
│ │ │ │ ├── EditStyleContextMenu.xaml.cs
│ │ │ │ ├── EditStyleContextMenuExtension.cs
│ │ │ │ ├── GridAdornerProvider.cs
│ │ │ │ ├── GridPlacementSupport.cs
│ │ │ │ ├── InPlaceEditorExtension.cs
│ │ │ │ ├── Initializers.cs
│ │ │ │ ├── LineExtensionBase.cs
│ │ │ │ ├── LineHandlerExtension.cs
│ │ │ │ ├── MarginHandleExtension.cs
│ │ │ │ ├── OnlyDeletePlacementBehavior.cs
│ │ │ │ ├── PanelInstanceFactory.cs
│ │ │ │ ├── PanelMove.cs
│ │ │ │ ├── PanelSelectionHandler.cs
│ │ │ │ ├── PartialPanelSelectionHandler.cs
│ │ │ │ ├── PathContextMenu.xaml
│ │ │ │ ├── PathContextMenu.xaml.cs
│ │ │ │ ├── PathContextMenuExtension.cs
│ │ │ │ ├── PathHandlerExtension.cs
│ │ │ │ ├── PointTrackerPlacementSupport.cs
│ │ │ │ ├── PolyLineHandlerExtension.cs
│ │ │ │ ├── QuickOperationMenuExtension.cs
│ │ │ │ ├── RasterPlacementBehavior.cs
│ │ │ │ ├── RenderTransformOriginExtension.cs
│ │ │ │ ├── ResizeThumbExtension.cs
│ │ │ │ ├── RightClickContextMenu.xaml
│ │ │ │ ├── RightClickContextMenu.xaml.cs
│ │ │ │ ├── RightClickContextMenuExtension.cs
│ │ │ │ ├── RotateThumbExtension.cs
│ │ │ │ ├── SelectedElementRectangleExtension.cs
│ │ │ │ ├── SizeDisplayExtension.cs
│ │ │ │ ├── SkewThumbExtension.cs
│ │ │ │ ├── SnaplinePlacementBehavior.cs
│ │ │ │ ├── StackPanelPlacementSupport.cs
│ │ │ │ ├── TabItemClickableExtension.cs
│ │ │ │ ├── TextBlockRightClickContextMenu.xaml
│ │ │ │ ├── TextBlockRightClickContextMenu.xaml.cs
│ │ │ │ ├── TextBlockRightClickContextMenuExtension.cs
│ │ │ │ ├── TopLeftContainerDragHandle.cs
│ │ │ │ ├── TopLeftContainerDragHandleMultipleItems.cs
│ │ │ │ ├── UnwrapItemContextMenu.xaml
│ │ │ │ ├── UnwrapItemContextMenu.xaml.cs
│ │ │ │ ├── UnwrapItemContextMenuExtension.cs
│ │ │ │ ├── UserControlPointsObjectExtension.cs
│ │ │ │ ├── WrapItemContextMenu.xaml
│ │ │ │ ├── WrapItemContextMenu.xaml.cs
│ │ │ │ ├── WrapItemContextMenuExtension.cs
│ │ │ │ ├── WrapItemsContextMenu.xaml
│ │ │ │ ├── WrapItemsContextMenu.xaml.cs
│ │ │ │ └── WrapItemsContextMenuExtension.cs
│ │ │ ├── FocusNavigator.cs
│ │ │ ├── Images
│ │ │ │ ├── Class.png
│ │ │ │ ├── Icons.16x16.CopyIcon.png
│ │ │ │ ├── Icons.16x16.CutIcon.png
│ │ │ │ ├── Icons.16x16.DeleteIcon.png
│ │ │ │ ├── Icons.16x16.GridSnap.png
│ │ │ │ ├── Icons.16x16.GuideSnap.png
│ │ │ │ ├── Icons.16x16.PasteIcon.png
│ │ │ │ ├── Icons.16x16.Properties.Categorized.png
│ │ │ │ ├── Icons.16x16.Properties.Events.png
│ │ │ │ ├── Icons.16x16.Properties.Properties.png
│ │ │ │ ├── Icons.16x16.Properties.SortAlphabet.png
│ │ │ │ ├── Icons.16x16.RedoIcon.png
│ │ │ │ ├── Icons.16x16.UndoIcon.png
│ │ │ │ ├── Icons.16x16.WpfOutline.Eye.png
│ │ │ │ ├── Icons.16x16.WpfOutline.EyeClose.png
│ │ │ │ ├── Icons.32x32.EmptyProjectIcon.png
│ │ │ │ ├── PanToolCursor.cur
│ │ │ │ ├── PanToolCursorMouseDown.cur
│ │ │ │ ├── Tag.png
│ │ │ │ ├── ZoomIn.png
│ │ │ │ ├── ZoomOut.png
│ │ │ │ ├── canvas.png
│ │ │ │ ├── edit-bold.png
│ │ │ │ ├── edit-color.png
│ │ │ │ ├── edit-italic.png
│ │ │ │ ├── edit-strike.png
│ │ │ │ ├── edit-underline.png
│ │ │ │ ├── edit.png
│ │ │ │ ├── grid.png
│ │ │ │ ├── group2.png
│ │ │ │ ├── layers-alignment-bottom.png
│ │ │ │ ├── layers-alignment-center.png
│ │ │ │ ├── layers-alignment-left.png
│ │ │ │ ├── layers-alignment-middle.png
│ │ │ │ ├── layers-alignment-right.png
│ │ │ │ ├── layers-alignment.png
│ │ │ │ ├── layers-arrange-back.png
│ │ │ │ ├── layers-arrange.png
│ │ │ │ ├── layers-stack-arrange-back.png
│ │ │ │ ├── layers-stack-arrange.png
│ │ │ │ ├── license.txt
│ │ │ │ ├── lock.png
│ │ │ │ ├── paint-can-color.png
│ │ │ │ ├── rotate.cur
│ │ │ │ └── wrap-option.png
│ │ │ ├── MarkupExtensions
│ │ │ │ └── DesignItemBinding.cs
│ │ │ ├── ModelTools.cs
│ │ │ ├── OutlineView
│ │ │ │ ├── DragListener.cs
│ │ │ │ ├── DragTreeView.cs
│ │ │ │ ├── DragTreeViewItem.cs
│ │ │ │ ├── IOutlineNode.cs
│ │ │ │ ├── IconItem.cs
│ │ │ │ ├── Outline.xaml
│ │ │ │ ├── Outline.xaml.cs
│ │ │ │ ├── OutlineNode.cs
│ │ │ │ ├── OutlineNodeBase.cs
│ │ │ │ ├── OutlineNodeNameService.cs
│ │ │ │ ├── OutlineTreeView.cs
│ │ │ │ ├── OutlineView.xaml
│ │ │ │ └── PropertyOutlineNode.cs
│ │ │ ├── PropertyGrid
│ │ │ │ ├── Editors
│ │ │ │ │ ├── BoolEditor.xaml
│ │ │ │ │ ├── BoolEditor.xaml.cs
│ │ │ │ │ ├── BrushEditor
│ │ │ │ │ │ ├── BrushEditor.cs
│ │ │ │ │ │ ├── BrushEditorPopup.xaml
│ │ │ │ │ │ ├── BrushEditorPopup.xaml.cs
│ │ │ │ │ │ ├── BrushEditorView.xaml
│ │ │ │ │ │ ├── BrushEditorView.xaml.cs
│ │ │ │ │ │ ├── BrushTypeEditor.xaml
│ │ │ │ │ │ ├── BrushTypeEditor.xaml.cs
│ │ │ │ │ │ ├── GradientBrushEditor.xaml
│ │ │ │ │ │ ├── GradientBrushEditor.xaml.cs
│ │ │ │ │ │ ├── GradientSlider.xaml
│ │ │ │ │ │ ├── GradientSlider.xaml.cs
│ │ │ │ │ │ ├── NormalizedPanel.cs
│ │ │ │ │ │ ├── SolidBrushEditor.xaml
│ │ │ │ │ │ └── SolidBrushEditor.xaml.cs
│ │ │ │ │ ├── CollectionEditor.xaml
│ │ │ │ │ ├── CollectionEditor.xaml.cs
│ │ │ │ │ ├── CollectionTemplateDictionary.xaml
│ │ │ │ │ ├── CollectionTemplateSelector.cs
│ │ │ │ │ ├── ColorEditor
│ │ │ │ │ │ ├── ColorEditorPopup.xaml
│ │ │ │ │ │ ├── ColorEditorPopup.xaml.cs
│ │ │ │ │ │ ├── ColorTypeEditor.xaml
│ │ │ │ │ │ └── ColorTypeEditor.xaml.cs
│ │ │ │ │ ├── ComboBoxEditor.xaml
│ │ │ │ │ ├── ComboBoxEditor.xaml.cs
│ │ │ │ │ ├── EventEditor.xaml
│ │ │ │ │ ├── EventEditor.xaml.cs
│ │ │ │ │ ├── FlatCollectionEditor.xaml
│ │ │ │ │ ├── FlatCollectionEditor.xaml.cs
│ │ │ │ │ ├── FormatedTextEditor
│ │ │ │ │ │ ├── FormatedTextEditor.xaml
│ │ │ │ │ │ ├── FormatedTextEditor.xaml.cs
│ │ │ │ │ │ ├── RichTextBoxToolbar.xaml
│ │ │ │ │ │ └── RichTextBoxToolbar.xaml.cs
│ │ │ │ │ ├── NumberEditor.xaml
│ │ │ │ │ ├── NumberEditor.xaml.cs
│ │ │ │ │ ├── OpenCollectionEditor.xaml
│ │ │ │ │ ├── OpenCollectionEditor.xaml.cs
│ │ │ │ │ ├── TextBoxEditor.xaml
│ │ │ │ │ ├── TextBoxEditor.xaml.cs
│ │ │ │ │ ├── TimeSpanEditor.xaml
│ │ │ │ │ └── TimeSpanEditor.xaml.cs
│ │ │ │ ├── PropertyContextMenu.xaml
│ │ │ │ ├── PropertyContextMenu.xaml.cs
│ │ │ │ ├── PropertyGrid.cs
│ │ │ │ ├── PropertyGridView.cs
│ │ │ │ └── PropertyGridView.xaml
│ │ │ ├── RootItemBehavior.cs
│ │ │ ├── Services
│ │ │ │ ├── ChooseClass.cs
│ │ │ │ ├── ChooseClassDialog.xaml
│ │ │ │ ├── ChooseClassDialog.xaml.cs
│ │ │ │ ├── ChooseClassServiceBase.cs
│ │ │ │ ├── ClickOrDragMouseGesture.cs
│ │ │ │ ├── ComponentPropertyService.cs
│ │ │ │ ├── CopyPasteService.cs
│ │ │ │ ├── CreateComponentTool.cs
│ │ │ │ ├── DesignerKeyBindings.cs
│ │ │ │ ├── DragFileToDesignPanelHelper.cs
│ │ │ │ ├── DragMoveMouseGesture.cs
│ │ │ │ ├── ErrorService.cs
│ │ │ │ ├── MouseGestureBase.cs
│ │ │ │ ├── MoveLogic.cs
│ │ │ │ ├── OptionService.cs
│ │ │ │ ├── PointerTool.cs
│ │ │ │ ├── SelectionService.cs
│ │ │ │ ├── ToolService.cs
│ │ │ │ ├── UndoService.cs
│ │ │ │ ├── ViewService.cs
│ │ │ │ ├── WpfTopLevelWindowService.cs
│ │ │ │ └── XamlErrorService.cs
│ │ │ ├── SharedInstances.cs
│ │ │ ├── StretchDirection.cs
│ │ │ ├── ThumbnailView
│ │ │ │ ├── ThumbnailView.cs
│ │ │ │ └── ThumbnailView.xaml
│ │ │ ├── Translations.cs
│ │ │ ├── WpfDesign.Designer.csproj
│ │ │ ├── Xaml
│ │ │ │ ├── XamlComponentService.cs
│ │ │ │ ├── XamlDesignContext.cs
│ │ │ │ ├── XamlDesignItem.cs
│ │ │ │ ├── XamlEditOperations.cs
│ │ │ │ ├── XamlLoadSettings.cs
│ │ │ │ ├── XamlModelCollectionElementsCollection.cs
│ │ │ │ ├── XamlModelProperty.cs
│ │ │ │ └── XamlModelPropertyCollection.cs
│ │ │ └── themes
│ │ │ ├── VersionedAssemblyResourceDictionary.cs
│ │ │ └── generic.xaml
│ │ └── Tests
│ │ ├── AssemblyInfo.cs
│ │ ├── Designer
│ │ │ ├── EditOperationTests.cs
│ │ │ ├── FocusNavigatorTests.cs
│ │ │ ├── MarginHandleTests.cs
│ │ │ ├── MarkupExtensionModelTests.cs
│ │ │ ├── MockFocusNavigator.cs
│ │ │ ├── ModelTestHelper.cs
│ │ │ ├── ModelTests.cs
│ │ │ ├── NamespaceTests.cs
│ │ │ ├── OutlineView
│ │ │ │ ├── HierarchyTests.cs
│ │ │ │ ├── InsertTests.cs
│ │ │ │ └── SelectionTests.cs
│ │ │ ├── PlacementTests.cs
│ │ │ └── SetPropertyTests.cs
│ │ ├── Test.xaml
│ │ ├── WpfDesign.Tests.csproj
│ │ ├── XamlDom
│ │ │ ├── CollectionTests.cs
│ │ │ ├── ExampleClass.cs
│ │ │ ├── ExampleClassContainer.cs
│ │ │ ├── ExampleControl.cs
│ │ │ ├── ExampleService.cs
│ │ │ ├── MarkupExtensionTests.cs
│ │ │ ├── NamescopeTest.cs
│ │ │ ├── NamscopeTestUsercontrol.xaml
│ │ │ ├── NamscopeTestUsercontrol.xaml.cs
│ │ │ ├── SamplesTests.cs
│ │ │ ├── SimpleLoadTests.cs
│ │ │ ├── SystemTypesLoadTest.cs
│ │ │ ├── TestHelper.cs
│ │ │ ├── WhitespaceTests.cs
│ │ │ └── XamlTypeFinderTests.cs
│ │ └── packages.config
│ ├── WpfDesign.XamlDom
│ │ └── Project
│ │ ├── AssemblyInfo.cs
│ │ ├── CollectionElementsCollection.cs
│ │ ├── CollectionSupport.cs
│ │ ├── DesignInstanceExtension.cs
│ │ ├── DesignTimeProperties.cs
│ │ ├── IXamlErrorSink.cs
│ │ ├── MarkupCompatibilityProperties.cs
│ │ ├── MarkupExtensionParser.cs
│ │ ├── MarkupExtensionPrinter.cs
│ │ ├── MarkupExtensionWrapper.cs
│ │ ├── MarkupExtensionWrapperAttribute.cs
│ │ ├── NameScopeHelper.cs
│ │ ├── PositionXmlDocument.cs
│ │ ├── TemplateHelper.cs
│ │ ├── WpfDesign.XamlDom.csproj
│ │ ├── XamlConstants.cs
│ │ ├── XamlDocument.cs
│ │ ├── XamlElementLineInfo.cs
│ │ ├── XamlFormatter.cs
│ │ ├── XamlLoadException.cs
│ │ ├── XamlNamespaceProperties.cs
│ │ ├── XamlObject.cs
│ │ ├── XamlObjectServiceProvider.cs
│ │ ├── XamlParser.cs
│ │ ├── XamlParserSettings.cs
│ │ ├── XamlProperty.cs
│ │ ├── XamlPropertyInfo.cs
│ │ ├── XamlPropertyValue.cs
│ │ ├── XamlStaticTools.cs
│ │ ├── XamlTextValue.cs
│ │ ├── XamlTypeFinder.cs
│ │ ├── XamlTypeResolverProvider.cs
│ │ └── XamlXmlWriter.cs
│ ├── WpfDesign.sln
│ ├── XamlDesigner
│ │ ├── App.xaml
│ │ ├── App.xaml.cs
│ │ ├── BitmapButton.xaml
│ │ ├── BitmapButton.xaml.cs
│ │ ├── Configuration
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Settings.Designer.cs
│ │ │ ├── Settings.settings
│ │ │ ├── app.config
│ │ │ └── app.manifest
│ │ ├── Converters
│ │ │ ├── ActiveDocumentConverter.cs
│ │ │ ├── PanesStyleSelector.cs
│ │ │ └── PanesTemplateSelector.cs
│ │ ├── Converters.cs
│ │ ├── Demo.XamlDesigner.csproj
│ │ ├── Document.cs
│ │ ├── DocumentView.xaml
│ │ ├── DocumentView.xaml.cs
│ │ ├── EnumBar.xaml
│ │ ├── EnumBar.xaml.cs
│ │ ├── EnumButton.cs
│ │ ├── ErrorListView.xaml
│ │ ├── ErrorListView.xaml.cs
│ │ ├── ExtensionMethods.cs
│ │ ├── Images
│ │ │ ├── Error.png
│ │ │ ├── Reference.png
│ │ │ └── Tag.png
│ │ ├── MainWindow.xaml
│ │ ├── MainWindow.xaml.cs
│ │ ├── MainWindow_Commands.cs
│ │ ├── MyTypeFinder.cs
│ │ ├── NewFileTemplate.xaml
│ │ ├── Shell.cs
│ │ ├── SimpleCommand.cs
│ │ ├── TestFiles
│ │ │ ├── 1.xaml
│ │ │ ├── 2.xaml
│ │ │ ├── 3.xaml
│ │ │ ├── 4.xaml
│ │ │ └── 5.xaml
│ │ ├── Themes
│ │ │ └── Generic.xaml
│ │ ├── Toolbox.cs
│ │ ├── ToolboxView.xaml
│ │ ├── ToolboxView.xaml.cs
│ │ └── app.config
│ ├── appveyor.yml
│ ├── azure-pipelines.yml
│ ├── nuget
│ │ ├── WpfDesigner.ExpressionBlendInteractionAddon.nuspec
│ │ ├── WpfDesigner.nuspec
│ │ ├── nuget.exe
│ │ └── pack.ps1
│ └── screenshot.png
└── 找例子网_WpfDesigner-master.zip
56 directories, 512 files
评论