实例介绍
WpfDesigner是一组可用于实现XAML GUI编辑器的程序集。
系统要求
需要.NET 4.5,或.NET Core 5.0以及.NET 6.0
【实例截图】
文件清单
└── WpfDesigner-fc189bcb2070d0a08a3b992024567ddd7a1248c3
├── appveyor.yml
├── azure-pipelines.yml
├── 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
├── nuget
│ ├── nuget.exe
│ ├── pack.ps1
│ ├── WpfDesigner.ExpressionBlendInteractionAddon.nuspec
│ └── WpfDesigner.nuspec
├── README.md
├── screenshot.png
├── SimpleSample
│ ├── App.config
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Arrow
│ │ ├── ArrowEnds.cs
│ │ ├── ArrowheadsDemo.cs
│ │ ├── ArrowLineBase.cs
│ │ ├── ArrowLine.cs
│ │ ├── ArrowPolyline.cs
│ │ └── Extensions
│ │ ├── ArrowLineExtensionBase.cs
│ │ ├── ArrowLineExtension.cs
│ │ ├── ArrowLinePointTrackerPlacementSupport.cs
│ │ └── DrawArrowLineExtension.cs
│ ├── Demo.SimpleSample.csproj
│ ├── MainWindow.xaml
│ ├── MainWindow.xaml.cs
│ ├── packages.config
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── TestControl.cs
│ └── ToolboxItem.cs
├── WpfDesign
│ └── Project
│ ├── Adorners
│ │ ├── AdornerPanel.cs
│ │ ├── AdornerPlacement.cs
│ │ ├── AdornerPlacementSpace.cs
│ │ ├── AdornerProviderClasses.cs
│ │ ├── AdornerProvider.cs
│ │ ├── IAdornerLayer.cs
│ │ └── RelativePlacement.cs
│ ├── ChangeGroup.cs
│ ├── Configuration
│ │ ├── AssemblyInfo.cs
│ │ └── CodeAnalysisDictionary.xml
│ ├── DesignContext.cs
│ ├── DesignerException.cs
│ ├── DesignItem.cs
│ ├── DesignItemProperty.cs
│ ├── DesignPanelHitTestResult.cs
│ ├── DrawItemExtension.cs
│ ├── DummyValueInsteadOfNullTypeDescriptionProvider.cs
│ ├── EventArgs.cs
│ ├── ExtensionMethods.cs
│ ├── Extensions
│ │ ├── BehaviorExtension.cs
│ │ ├── CustomInstanceFactory.cs
│ │ ├── DefaultExtension.cs
│ │ ├── DefaultInitializer.cs
│ │ ├── DesignItemInitializer.cs
│ │ ├── ExtensionAttribute.cs
│ │ ├── Extension.cs
│ │ ├── ExtensionForAttribute.cs
│ │ ├── ExtensionInterfaces.cs
│ │ ├── ExtensionManager.cs
│ │ ├── ExtensionServerAttribute.cs
│ │ ├── ExtensionServer.cs
│ │ ├── LogicalExtensionServers.cs
│ │ ├── MouseOverExtensionServer.cs
│ │ ├── NeverApplyExtensionsExtensionServer.cs
│ │ ├── SelectionExtensionServers.cs
│ │ └── XamlInstanceFactory.cs
│ ├── HitTestType.cs
│ ├── Interfaces
│ │ ├── IObservableList.cs
│ │ └── IOutlineNode.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.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
│ │ │ ├── InfoTextEnterArea.cs
│ │ │ ├── InPlaceEditor.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
│ │ │ ├── ArrangeItemsContextMenuExtension.cs
│ │ │ ├── ArrangeItemsContextMenu.xaml
│ │ │ ├── ArrangeItemsContextMenu.xaml.cs
│ │ │ ├── BorderForImageControl.cs
│ │ │ ├── BorderForInvisibleControl.cs
│ │ │ ├── BorderForMouseOver.cs
│ │ │ ├── CanvasPlacementSupport.cs
│ │ │ ├── CanvasPositionExtension.cs
│ │ │ ├── DefaultCommandsContextMenuExtension.cs
│ │ │ ├── DefaultCommandsContextMenu.xaml
│ │ │ ├── DefaultCommandsContextMenu.xaml.cs
│ │ │ ├── DefaultPlacementBehavior.cs
│ │ │ ├── DrawLineExtension.cs
│ │ │ ├── DrawPathExtension.cs
│ │ │ ├── DrawPolyLineExtension.cs
│ │ │ ├── EditStyleContextMenuExtension.cs
│ │ │ ├── EditStyleContextMenu.xaml
│ │ │ ├── EditStyleContextMenu.xaml.cs
│ │ │ ├── GridAdornerProvider.cs
│ │ │ ├── GridPlacementSupport.cs
│ │ │ ├── Initializers.cs
│ │ │ ├── InPlaceEditorExtension.cs
│ │ │ ├── LineExtensionBase.cs
│ │ │ ├── LineHandlerExtension.cs
│ │ │ ├── MarginHandleExtension.cs
│ │ │ ├── OnlyDeletePlacementBehavior.cs
│ │ │ ├── PanelInstanceFactory.cs
│ │ │ ├── PanelMove.cs
│ │ │ ├── PanelSelectionHandler.cs
│ │ │ ├── PartialPanelSelectionHandler.cs
│ │ │ ├── PathContextMenuExtension.cs
│ │ │ ├── PathContextMenu.xaml
│ │ │ ├── PathContextMenu.xaml.cs
│ │ │ ├── PathHandlerExtension.cs
│ │ │ ├── PointTrackerPlacementSupport.cs
│ │ │ ├── PolyLineHandlerExtension.cs
│ │ │ ├── QuickOperationMenuExtension.cs
│ │ │ ├── RasterPlacementBehavior.cs
│ │ │ ├── RenderTransformOriginExtension.cs
│ │ │ ├── ResizeThumbExtension.cs
│ │ │ ├── RightClickContextMenuExtension.cs
│ │ │ ├── RightClickContextMenu.xaml
│ │ │ ├── RightClickContextMenu.xaml.cs
│ │ │ ├── RotateThumbExtension.cs
│ │ │ ├── SelectedElementRectangleExtension.cs
│ │ │ ├── SizeDisplayExtension.cs
│ │ │ ├── SkewThumbExtension.cs
│ │ │ ├── SnaplinePlacementBehavior.cs
│ │ │ ├── StackPanelPlacementSupport.cs
│ │ │ ├── TabItemClickableExtension.cs
│ │ │ ├── TextBlockRightClickContextMenuExtension.cs
│ │ │ ├── TextBlockRightClickContextMenu.xaml
│ │ │ ├── TextBlockRightClickContextMenu.xaml.cs
│ │ │ ├── TopLeftContainerDragHandle.cs
│ │ │ ├── TopLeftContainerDragHandleMultipleItems.cs
│ │ │ ├── UnwrapItemContextMenuExtension.cs
│ │ │ ├── UnwrapItemContextMenu.xaml
│ │ │ ├── UnwrapItemContextMenu.xaml.cs
│ │ │ ├── UserControlPointsObjectExtension.cs
│ │ │ ├── WrapItemContextMenuExtension.cs
│ │ │ ├── WrapItemContextMenu.xaml
│ │ │ ├── WrapItemContextMenu.xaml.cs
│ │ │ ├── WrapItemsContextMenuExtension.cs
│ │ │ ├── WrapItemsContextMenu.xaml
│ │ │ └── WrapItemsContextMenu.xaml.cs
│ │ ├── FocusNavigator.cs
│ │ ├── Images
│ │ │ ├── canvas.png
│ │ │ ├── Class.png
│ │ │ ├── edit-bold.png
│ │ │ ├── edit-color.png
│ │ │ ├── edit-italic.png
│ │ │ ├── edit.png
│ │ │ ├── edit-strike.png
│ │ │ ├── edit-underline.png
│ │ │ ├── grid.png
│ │ │ ├── group2.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.EyeClose.png
│ │ │ ├── Icons.16x16.WpfOutline.Eye.png
│ │ │ ├── Icons.32x32.EmptyProjectIcon.png
│ │ │ ├── layers-alignment-bottom.png
│ │ │ ├── layers-alignment-center.png
│ │ │ ├── layers-alignment-left.png
│ │ │ ├── layers-alignment-middle.png
│ │ │ ├── layers-alignment.png
│ │ │ ├── layers-alignment-right.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
│ │ │ ├── PanToolCursor.cur
│ │ │ ├── PanToolCursorMouseDown.cur
│ │ │ ├── rotate.cur
│ │ │ ├── Tag.png
│ │ │ ├── wrap-option.png
│ │ │ ├── ZoomIn.png
│ │ │ └── ZoomOut.png
│ │ ├── MarkupExtensions
│ │ │ └── DesignItemBinding.cs
│ │ ├── ModelTools.cs
│ │ ├── OutlineView
│ │ │ ├── DragListener.cs
│ │ │ ├── DragTreeView.cs
│ │ │ ├── DragTreeViewItem.cs
│ │ │ ├── IconItem.cs
│ │ │ ├── OutlineNodeBase.cs
│ │ │ ├── OutlineNode.cs
│ │ │ ├── OutlineNodeNameService.cs
│ │ │ ├── OutlineTreeView.cs
│ │ │ ├── OutlineView.xaml
│ │ │ ├── Outline.xaml
│ │ │ ├── Outline.xaml.cs
│ │ │ └── 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
│ │ ├── themes
│ │ │ ├── generic.xaml
│ │ │ └── VersionedAssemblyResourceDictionary.cs
│ │ ├── ThumbnailView
│ │ │ ├── ThumbnailView.cs
│ │ │ └── ThumbnailView.xaml
│ │ ├── Translations.cs
│ │ ├── WpfDesign.Designer.csproj
│ │ └── Xaml
│ │ ├── XamlComponentService.cs
│ │ ├── XamlDesignContext.cs
│ │ ├── XamlDesignItem.cs
│ │ ├── XamlEditOperations.cs
│ │ ├── XamlLoadSettings.cs
│ │ ├── XamlModelCollectionElementsCollection.cs
│ │ ├── XamlModelPropertyCollection.cs
│ │ └── XamlModelProperty.cs
│ └── 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
│ ├── packages.config
│ ├── Test.xaml
│ ├── WpfDesign.Tests.csproj
│ └── XamlDom
│ ├── CollectionTests.cs
│ ├── ExampleClassContainer.cs
│ ├── ExampleClass.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
├── WpfDesign.Design.ExpressionBlendInteractionAddon
│ ├── BehaviorsEditor
│ │ ├── BehaviorsEditor.cs
│ │ └── BehaviorsEditor.xaml
│ ├── InteractionHelper.cs
│ ├── Interfaces
│ │ └── IComponentBehaviorsAndTriggersService.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Services
│ │ └── ComponentBehaviorsAndTriggersService.cs
│ ├── themes
│ │ ├── generic.xaml
│ │ └── VersionedAssemblyResourceDictionary.cs
│ ├── TriggersEditor
│ │ ├── TriggersEditor.cs
│ │ └── TriggersEditor.xaml
│ └── WpfDesign.Designer.ExpressionBlendInteractionAddon.csproj
├── WpfDesign.sln
├── WpfDesign.XamlDom
│ └── Project
│ ├── AssemblyInfo.cs
│ ├── CollectionElementsCollection.cs
│ ├── CollectionSupport.cs
│ ├── DesignInstanceExtension.cs
│ ├── DesignTimeProperties.cs
│ ├── IXamlErrorSink.cs
│ ├── MarkupCompatibilityProperties.cs
│ ├── MarkupExtensionParser.cs
│ ├── MarkupExtensionPrinter.cs
│ ├── MarkupExtensionWrapperAttribute.cs
│ ├── MarkupExtensionWrapper.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
└── XamlDesigner
├── app.config
├── App.xaml
├── App.xaml.cs
├── BitmapButton.xaml
├── BitmapButton.xaml.cs
├── Configuration
│ ├── app.config
│ ├── app.manifest
│ ├── AssemblyInfo.cs
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── 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_Commands.cs
├── MainWindow.xaml
├── MainWindow.xaml.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
56 directories, 511 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论