在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → WpfDesigner设计器

WpfDesigner设计器

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:3.24M
  • 下载次数:54
  • 浏览次数:845
  • 发布时间:2022-05-24
  • 实例类别:C#语言基础
  • 发 布 人:赵维
  • 文件格式:.zip
  • 所需积分:2
 相关标签: Designer DES wpf PFD ner

实例介绍

【实例简介】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


标签: Designer DES wpf PFD ner

实例下载地址

WpfDesigner设计器

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

第 1 楼 dlgcy 发表于: 2022-11-15 23:42 52
从 GitHub 搬运的吧:https://github.com/icsharpcode/WpfDesigner

支持(0) 盖楼(回复)

发表评论

(您的评论需要经过审核才能显示)

查看所有1条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警