基本信息
源码名称:基于.NET C# 开发的 Winform 自定义表单设计组件。
源码大小:0.12M
文件格式:.zip
开发语言:C#
更新时间:2023-03-29
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍

基于.NET C# 开发的 Winform 自定义表单设计组件。

是一个基于.NET C# 开发的 Winform 自定义表单设计组件。支持Xml保存和加载表单,支持控件的拖放和属设置,支持复制、粘贴、对齐、撤销、重做等设计时操作。


.
├── FormDesigner-main
│   ├── LICENSE
│   ├── README.md
│   ├── Smart.FormDesigner.sln
│   ├── examples
│   │   └── SimpleDesignerExample
│   │       ├── CustomDesignerControl.Designer.cs
│   │       ├── CustomDesignerControl.cs
│   │       ├── CustomDesignerControl.resx
│   │       ├── MainForm.Designer.cs
│   │       ├── MainForm.cs
│   │       ├── MainForm.resx
│   │       ├── Program.cs
│   │       ├── Properties
│   │       │   ├── Resources.Designer.cs
│   │       │   └── Resources.resx
│   │       ├── SimpleDesignerExample.csproj
│   │       ├── Toolbox.cs
│   │       └── images
│   │           ├── align_bottom_16x.png
│   │           ├── align_bottom_on_16x16.png
│   │           ├── align_center_16x.png
│   │           ├── align_left_16x.png
│   │           ├── align_middlle_16x.png
│   │           ├── align_right_16x.png
│   │           ├── align_toGrid_16x.png
│   │           ├── align_top_16x.png
│   │           ├── arrow_cursor_16px.png
│   │           ├── copy_16x.png
│   │           ├── cut_16x.png
│   │           ├── delete_16x.png
│   │           ├── new_form_16x.png
│   │           ├── open_file_16x.png
│   │           ├── preview_16x.png
│   │           ├── redo_16x.png
│   │           ├── same_height_16x.png
│   │           ├── same_size_16x.png
│   │           ├── same_width_16x.png
│   │           ├── save_16x.png
│   │           ├── save_all_16x.png
│   │           └── undo_16x.png
│   └── src
│       └── Smart.FormDesigner
│           ├── AbstractService.cs
│           ├── Constants.cs
│           ├── Controls
│           │   ├── DesignerControl.cs
│           │   ├── DesignerControl.resx
│           │   ├── PropertyboxControl.cs
│           │   ├── PropertyboxControl.resx
│           │   ├── Toolbox
│           │   │   ├── IToolbox.cs
│           │   │   ├── ToolboxBaseItem.cs
│           │   │   ├── ToolboxCategoryCollection.cs
│           │   │   ├── ToolboxCategoryItem.cs
│           │   │   ├── ToolboxCategoryState.cs
│           │   │   ├── ToolboxItemDragEventArgs.cs
│           │   │   ├── ToolboxItemUsedArgs.cs
│           │   │   ├── ToolboxListControl.cs
│           │   │   ├── ToolboxPointerItem.cs
│           │   │   └── ToolboxService.cs
│           │   ├── ToolboxControl.cs
│           │   └── ToolboxControl.resx
│           ├── Designer
│           │   ├── AddingVerbEventArgs.cs
│           │   ├── AlignType.cs
│           │   ├── DefaultDesignerTransaction.cs
│           │   ├── Designer.cs
│           │   ├── DesignerHost.cs
│           │   ├── FilterEventArgs.cs
│           │   ├── Internal
│           │   │   ├── DesignSurface.cs
│           │   │   ├── DesignerActions
│           │   │   │   ├── AddAction.cs
│           │   │   │   ├── ChangeAction.cs
│           │   │   │   ├── DesignerAction.cs
│           │   │   │   ├── MegaAction.cs
│           │   │   │   └── RemoveAction.cs
│           │   │   ├── DesignerSite.cs
│           │   │   ├── ExtenderProvidedProperty.cs
│           │   │   ├── NestedContainer.cs
│           │   │   └── RootDesigner.cs
│           │   ├── ResizeType.cs
│           │   ├── Serialization
│           │   │   ├── BinarySerializationAttribute.cs
│           │   │   ├── DefaultDesignerLoader.cs
│           │   │   ├── IDesignerLoader.cs
│           │   │   ├── Internal
│           │   │   │   ├── ComponentProperty.cs
│           │   │   │   ├── Extender.cs
│           │   │   │   ├── InstanceDescriptorLoader.cs
│           │   │   │   ├── ReferencedCollection.cs
│           │   │   │   └── ReferencedItem.cs
│           │   │   ├── LoadModes.cs
│           │   │   ├── Reader
│           │   │   │   ├── IReader.cs
│           │   │   │   ├── ReaderBase.cs
│           │   │   │   ├── ReaderState.cs
│           │   │   │   └── XmlFormReader.cs
│           │   │   ├── StoreEventArgs.cs
│           │   │   └── Writer
│           │   │       ├── IWriter.cs
│           │   │       └── XmlFormWriter.cs
│           │   └── Services
│           │       ├── BaseEventBindingService.cs
│           │       ├── ContainerService.cs
│           │       ├── DefaultDesignerOptionService.cs
│           │       ├── DefaultEventBindingService.cs
│           │       ├── DefaultMenuCommandService.cs
│           │       ├── DictionaryService.cs
│           │       ├── EventService.cs
│           │       ├── NameCreationService.cs
│           │       ├── SelectionService.cs
│           │       ├── TypeDescriptorFilterService.cs
│           │       ├── TypeDiscoveryService.cs
│           │       └── TypeResolutionService.cs
│           ├── Disposable.cs
│           ├── Extensions
│           │   ├── ControlExtensions.cs
│           │   ├── IDesignerHostExtensions.cs
│           │   ├── IServiceProviderExtensions.cs
│           │   ├── ObjectExtensions.cs
│           │   ├── PointExtensions.cs
│           │   ├── StringExtensions.cs
│           │   ├── TypeConverterExtensions.cs
│           │   └── TypeExtensions.cs
│           ├── Properties
│           │   ├── Resources.Designer.cs
│           │   └── Resources.resx
│           ├── Resources
│           │   ├── arrow_cursor_16px.png
│           │   ├── launch_16x.png
│           │   └── normal_16x.png
│           └── Smart.FormDesigner.csproj
└── 基于.NET C# 开发的 Winform 自定义表单设计组件。_FormDesigner-main.zip

20 directories, 115 files