在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → mxGraph.zip

mxGraph.zip

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:2.83M
  • 下载次数:3
  • 浏览次数:426
  • 发布时间:2020-07-19
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
mxGraph 简单易用,只需要在HTML文件中加入JavaScript链接,就可立即使用最简洁最强大的基于浏览器自身的绘图工具。 HTML 5和全系列IE支持。 想像一下,整个应用都是基于Web。在浏览器中设计工作流,操纵有背景图的电信网络图。在线创建的BPMN图, 数据库结构图,UML图以及组织架构图。任何以前需要客户安装才可以使用的软件,现在可以变成在主流浏览器上零安装的Web应用。 基于浏览器自身。 请点击上面任何示例的图片来体验。不需要从服务器上往返,不需要任何插件,直接在你的浏览器上用JavaScript驱动。 更多的示例以及示例的源代码可在试用版中找到。 服务器支持: 尽
【实例截图】
【核心代码】
mxGraph
└── mxGraph
├── debug
│   └── js
│   └── mxClient.js
├── devel
│   ├── source
│   │   └── src
│   │   └── js
│   │   ├── editor
│   │   │   ├── mxDefaultKeyHandler.js
│   │   │   ├── mxDefaultPopupMenu.js
│   │   │   ├── mxDefaultToolbar.js
│   │   │   └── mxEditor.js
│   │   ├── handler
│   │   │   ├── mxCellHighlight.js
│   │   │   ├── mxCellMarker.js
│   │   │   ├── mxCellTracker.js
│   │   │   ├── mxConnectionHandler.js
│   │   │   ├── mxConstraintHandler.js
│   │   │   ├── mxEdgeHandler.js
│   │   │   ├── mxEdgeSegmentHandler.js
│   │   │   ├── mxElbowEdgeHandler.js
│   │   │   ├── mxGraphHandler.js
│   │   │   ├── mxKeyHandler.js
│   │   │   ├── mxPanningHandler.js
│   │   │   ├── mxRubberband.js
│   │   │   ├── mxSelectionCellsHandler.js
│   │   │   ├── mxTooltipHandler.js
│   │   │   └── mxVertexHandler.js
│   │   ├── index.txt
│   │   ├── io
│   │   │   ├── mxCellCodec.js
│   │   │   ├── mxChildChangeCodec.js
│   │   │   ├── mxCodec.js
│   │   │   ├── mxCodecRegistry.js
│   │   │   ├── mxDefaultKeyHandlerCodec.js
│   │   │   ├── mxDefaultPopupMenuCodec.js
│   │   │   ├── mxDefaultToolbarCodec.js
│   │   │   ├── mxEditorCodec.js
│   │   │   ├── mxGenericChangeCodec.js
│   │   │   ├── mxGraphCodec.js
│   │   │   ├── mxGraphViewCodec.js
│   │   │   ├── mxModelCodec.js
│   │   │   ├── mxObjectCodec.js
│   │   │   ├── mxRootChangeCodec.js
│   │   │   ├── mxStylesheetCodec.js
│   │   │   └── mxTerminalChangeCodec.js
│   │   ├── layout
│   │   │   ├── hierarchical
│   │   │   │   ├── model
│   │   │   │   │   ├── mxGraphAbstractHierarchyCell.js
│   │   │   │   │   ├── mxGraphHierarchyEdge.js
│   │   │   │   │   ├── mxGraphHierarchyModel.js
│   │   │   │   │   └── mxGraphHierarchyNode.js
│   │   │   │   ├── mxHierarchicalLayout.js
│   │   │   │   └── stage
│   │   │   │   ├── mxCoordinateAssignment.js
│   │   │   │   ├── mxHierarchicalLayoutStage.js
│   │   │   │   ├── mxMedianHybridCrossingReduction.js
│   │   │   │   └── mxMinimumCycleRemover.js
│   │   │   ├── mxCircleLayout.js
│   │   │   ├── mxCompactTreeLayout.js
│   │   │   ├── mxCompositeLayout.js
│   │   │   ├── mxEdgeLabelLayout.js
│   │   │   ├── mxFastOrganicLayout.js
│   │   │   ├── mxGraphLayout.js
│   │   │   ├── mxParallelEdgeLayout.js
│   │   │   ├── mxPartitionLayout.js
│   │   │   └── mxStackLayout.js
│   │   ├── model
│   │   │   ├── mxCell.js
│   │   │   ├── mxCellPath.js
│   │   │   ├── mxGeometry.js
│   │   │   └── mxGraphModel.js
│   │   ├── mxClient.js
│   │   ├── shape
│   │   │   ├── mxActor.js
│   │   │   ├── mxArrow.js
│   │   │   ├── mxCloud.js
│   │   │   ├── mxConnector.js
│   │   │   ├── mxCylinder.js
│   │   │   ├── mxDoubleEllipse.js
│   │   │   ├── mxEllipse.js
│   │   │   ├── mxHexagon.js
│   │   │   ├── mxImageShape.js
│   │   │   ├── mxLabel.js
│   │   │   ├── mxLine.js
│   │   │   ├── mxMarker.js
│   │   │   ├── mxPolyline.js
│   │   │   ├── mxRectangleShape.js
│   │   │   ├── mxRhombus.js
│   │   │   ├── mxShape.js
│   │   │   ├── mxStencil.js
│   │   │   ├── mxStencilRegistry.js
│   │   │   ├── mxStencilShape.js
│   │   │   ├── mxSwimlane.js
│   │   │   ├── mxText.js
│   │   │   └── mxTriangle.js
│   │   ├── util
│   │   │   ├── mxAnimation.js
│   │   │   ├── mxAutoSaveManager.js
│   │   │   ├── mxClipboard.js
│   │   │   ├── mxConstants.js
│   │   │   ├── mxDictionary.js
│   │   │   ├── mxDivResizer.js
│   │   │   ├── mxDragSource.js
│   │   │   ├── mxEffects.js
│   │   │   ├── mxEvent.js
│   │   │   ├── mxEventObject.js
│   │   │   ├── mxEventSource.js
│   │   │   ├── mxForm.js
│   │   │   ├── mxGuide.js
│   │   │   ├── mxImage.js
│   │   │   ├── mxImageBundle.js
│   │   │   ├── mxImageExport.js
│   │   │   ├── mxLog.js
│   │   │   ├── mxMorphing.js
│   │   │   ├── mxMouseEvent.js
│   │   │   ├── mxObjectIdentity.js
│   │   │   ├── mxPanningManager.js
│   │   │   ├── mxPath.js
│   │   │   ├── mxPoint.js
│   │   │   ├── mxPopupMenu.js
│   │   │   ├── mxRectangle.js
│   │   │   ├── mxResources.js
│   │   │   ├── mxSession.js
│   │   │   ├── mxSvgCanvas2D.js
│   │   │   ├── mxToolbar.js
│   │   │   ├── mxUndoManager.js
│   │   │   ├── mxUndoableEdit.js
│   │   │   ├── mxUrlConverter.js
│   │   │   ├── mxUtils.js
│   │   │   ├── mxWindow.js
│   │   │   ├── mxXmlCanvas2D.js
│   │   │   └── mxXmlRequest.js
│   │   └── view
│   │   ├── mxCellEditor.js
│   │   ├── mxCellOverlay.js
│   │   ├── mxCellRenderer.js
│   │   ├── mxCellState.js
│   │   ├── mxCellStatePreview.js
│   │   ├── mxConnectionConstraint.js
│   │   ├── mxEdgeStyle.js
│   │   ├── mxGraph.js
│   │   ├── mxGraphSelectionModel.js
│   │   ├── mxGraphView.js
│   │   ├── mxLayoutManager.js
│   │   ├── mxMultiplicity.js
│   │   ├── mxOutline.js
│   │   ├── mxPerimeter.js
│   │   ├── mxPrintPreview.js
│   │   ├── mxSpaceManager.js
│   │   ├── mxStyleRegistry.js
│   │   ├── mxStylesheet.js
│   │   ├── mxSwimlaneManager.js
│   │   └── mxTemporaryCellStates.js
│   └── source.zip
├── examples
│   ├── codec.html
│   ├── contexticons.html
│   ├── control.html
│   ├── dbeditor.html
│   ├── dragsource.html
│   ├── dynamicloading.html
│   ├── dynamicstyle.html
│   ├── dynamictoolbar.html
│   ├── edgetolerance.html
│   ├── editing.html
│   ├── editors
│   │   ├── archive
│   │   │   └── grapheditor
│   │   │   ├── css
│   │   │   │   └── grapheditor.css
│   │   │   ├── grapheditor.html
│   │   │   ├── js
│   │   │   │   ├── DiagramPanel.js
│   │   │   │   ├── DiagramStore.js
│   │   │   │   ├── GraphEditor.js
│   │   │   │   ├── LibraryPanel.js
│   │   │   │   └── MainPanel.js
│   │   │   └── resources
│   │   │   ├── basic-style.xml
│   │   │   └── default-style.xml
│   │   ├── config
│   │   │   ├── diagrameditor.xml
│   │   │   ├── editor-commons.xml
│   │   │   ├── keyhandler-commons.xml
│   │   │   ├── keyhandler-minimal.xml
│   │   │   ├── layouteditor.xml
│   │   │   ├── processeditor.xml
│   │   │   ├── wfeditor-commons.xml
│   │   │   ├── wfgraph-commons.xml
│   │   │   ├── wftoolbar-commons.xml
│   │   │   └── workfloweditor.xml
│   │   ├── css
│   │   │   ├── process.css
│   │   │   └── wordpress.css
│   │   ├── diagrameditor.html
│   │   ├── diagrams
│   │   │   ├── empty.xml
│   │   │   ├── swimlanes.xml
│   │   │   ├── travel-booking.xml
│   │   │   └── withdrawal.xml
│   │   ├── grapheditor.html
│   │   ├── help
│   │   │   ├── index-all.html
│   │   │   └── index.html
│   │   ├── images
│   │   │   ├── actor.gif
│   │   │   ├── alignbottom.gif
│   │   │   ├── aligncenter.gif
│   │   │   ├── alignleft.gif
│   │   │   ├── alignmiddle.gif
│   │   │   ├── alignright.gif
│   │   │   ├── aligntop.gif
│   │   │   ├── arrow.gif
│   │   │   ├── bell.png
│   │   │   ├── bg.gif
│   │   │   ├── block_end.gif
│   │   │   ├── block_start.gif
│   │   │   ├── bold.gif
│   │   │   ├── bottom.gif
│   │   │   ├── box.png
│   │   │   ├── camera.gif
│   │   │   ├── center.gif
│   │   │   ├── classic_end.gif
│   │   │   ├── classic_start.gif
│   │   │   ├── cloud.gif
│   │   │   ├── cmp-bg.gif
│   │   │   ├── collapse.gif
│   │   │   ├── connect.gif
│   │   │   ├── connector.gif
│   │   │   ├── console.gif
│   │   │   ├── copy.gif
│   │   │   ├── cube_green.png
│   │   │   ├── cut.gif
│   │   │   ├── cylinder.gif
│   │   │   ├── delete.gif
│   │   │   ├── diagram.gif
│   │   │   ├── diamond_end.gif
│   │   │   ├── diamond_start.gif
│   │   │   ├── doubleellipse.gif
│   │   │   ├── down.gif
│   │   │   ├── draw
│   │   │   │   ├── drawbg.jpg
│   │   │   │   ├── drawbgcolor.jpg
│   │   │   │   ├── drawfooter.jpg
│   │   │   │   ├── drawheader.jpg
│   │   │   │   └── mxlogo.jpg
│   │   │   ├── dude3.png
│   │   │   ├── earth.png
│   │   │   ├── ellipse.gif
│   │   │   ├── entity.gif
│   │   │   ├── expand.gif
│   │   │   ├── fillcolor.gif
│   │   │   ├── fit.gif
│   │   │   ├── font.gif
│   │   │   ├── fontcolor.gif
│   │   │   ├── gear.gif
│   │   │   ├── gear.png
│   │   │   ├── grid.gif
│   │   │   ├── group.gif
│   │   │   ├── help.gif
│   │   │   ├── hexagon.gif
│   │   │   ├── hline.gif
│   │   │   ├── house.gif
│   │   │   ├── house.png
│   │   │   ├── image.gif
│   │   │   ├── italic.gif
│   │   │   ├── left.gif
│   │   │   ├── linecolor.gif
│   │   │   ├── link.gif
│   │   │   ├── loading.gif
│   │   │   ├── middle.gif
│   │   │   ├── new.gif
│   │   │   ├── open.gif
│   │   │   ├── open_end.gif
│   │   │   ├── open_start.gif
│   │   │   ├── outline.gif
│   │   │   ├── oval_end.gif
│   │   │   ├── oval_start.gif
│   │   │   ├── overlays
│   │   │   │   ├── check.png
│   │   │   │   ├── error.png
│   │   │   │   ├── flash.png
│   │   │   │   ├── forbidden.png
│   │   │   │   ├── help.png
│   │   │   │   ├── house.png
│   │   │   │   ├── information.png
│   │   │   │   ├── lightbulb_on.png
│   │   │   │   ├── pencil.png
│   │   │   │   ├── printer.png
│   │   │   │   ├── user3.png
│   │   │   │   ├── users3.png
│   │   │   │   └── workplace.png
│   │   │   ├── package.png
│   │   │   ├── pan.gif
│   │   │   ├── paste.gif
│   │   │   ├── plain.gif
│   │   │   ├── preferences.gif
│   │   │   ├── press.gif
│   │   │   ├── preview.gif
│   │   │   ├── print.gif
│   │   │   ├── printer.png
│   │   │   ├── properties.gif
│   │   │   ├── rectangle.gif
│   │   │   ├── redo.gif
│   │   │   ├── refresh.gif
│   │   │   ├── rhombus.gif
│   │   │   ├── right.gif
│   │   │   ├── rounded.gif
│   │   │   ├── save.gif
│   │   │   ├── saveas.gif
│   │   │   ├── script.gif
│   │   │   ├── select.gif
│   │   │   ├── server.png
│   │   │   ├── straight.gif
│   │   │   ├── swimlane.gif
│   │   │   ├── symbols
│   │   │   │   ├── cancel_end.png
│   │   │   │   ├── cancel_intermediate.png
│   │   │   │   ├── error.png
│   │   │   │   ├── event.png
│   │   │   │   ├── event_end.png
│   │   │   │   ├── event_intermediate.png
│   │   │   │   ├── fork.png
│   │   │   │   ├── inclusive.png
│   │   │   │   ├── link.png
│   │   │   │   ├── merge.png
│   │   │   │   ├── message.png
│   │   │   │   ├── message_end.png
│   │   │   │   ├── message_intermediate.png
│   │   │   │   ├── multiple.png
│   │   │   │   ├── rule.png
│   │   │   │   ├── small_cancel_end.gif
│   │   │   │   ├── small_cancel_intermediate.gif
│   │   │   │   ├── small_error.gif
│   │   │   │   ├── small_event.gif
│   │   │   │   ├── small_event_end.gif
│   │   │   │   ├── small_event_intermediate.gif
│   │   │   │   ├── small_fork.gif
│   │   │   │   ├── small_inclusive.gif
│   │   │   │   ├── small_link.gif
│   │   │   │   ├── small_merge.gif
│   │   │   │   ├── small_message.gif
│   │   │   │   ├── small_message_end.gif
│   │   │   │   ├── small_message_intermediate.gif
│   │   │   │   ├── small_multiple.gif
│   │   │   │   ├── small_rule.gif
│   │   │   │   ├── small_terminate.gif
│   │   │   │   ├── small_timer.gif
│   │   │   │   ├── terminate.png
│   │   │   │   └── timer.png
│   │   │   ├── tasks.gif
│   │   │   ├── text.gif
│   │   │   ├── toback.gif
│   │   │   ├── tofront.gif
│   │   │   ├── toolbar.gif
│   │   │   ├── top.gif
│   │   │   ├── tree.gif
│   │   │   ├── triangle.gif
│   │   │   ├── underline.gif
│   │   │   ├── undo.gif
│   │   │   ├── ungroup.gif
│   │   │   ├── up.gif
│   │   │   ├── vertical.gif
│   │   │   ├── workplace.png
│   │   │   ├── wrench.png
│   │   │   ├── zoom.gif
│   │   │   ├── zoomactual.gif
│   │   │   ├── zoomin.gif
│   │   │   └── zoomout.gif
│   │   ├── js
│   │   │   └── mxApplication.js
│   │   ├── layouteditor.html
│   │   ├── processeditor.html
│   │   ├── resources
│   │   │   ├── mxApplication.properties
│   │   │   ├── mxApplication_de.properties
│   │   │   └── mxApplication_zh.properties
│   │   └── workfloweditor.html
│   ├── events.html
│   ├── extjs.html
│   ├── fileio.html
│   ├── fileio.txt
│   ├── fileio.xml
│   ├── fixedicon.html
│   ├── fixedpoints.html
│   ├── grapheditor
│   │   ├── README
│   │   ├── java
│   │   │   └── src
│   │   │   └── com
│   │   │   └── mxgraph
│   │   │   └── examples
│   │   │   └── web
│   │   │   ├── Constants.java
│   │   │   ├── ExportServlet.java
│   │   │   ├── GraphEditor.java
│   │   │   ├── OpenServlet.java
│   │   │   └── SaveServlet.java
│   │   └── www
│   │   ├── images
│   │   │   ├── checkmark.gif
│   │   │   ├── close.png
│   │   │   ├── collapsed.gif
│   │   │   ├── connector.png
│   │   │   ├── expanded.gif
│   │   │   ├── grid.gif
│   │   │   ├── logo.png
│   │   │   ├── nocolor.png
│   │   │   ├── tooltip.png
│   │   │   ├── touch-connector.png
│   │   │   ├── touch-handle.png
│   │   │   └── transparent.gif
│   │   ├── index.html
│   │   ├── js
│   │   │   ├── Actions.js
│   │   │   ├── Dialogs.js
│   │   │   ├── Editor.js
│   │   │   ├── EditorUi.js
│   │   │   ├── Graph.js
│   │   │   ├── Menus.js
│   │   │   ├── Shapes.js
│   │   │   ├── Sidebar.js
│   │   │   └── Toolbar.js
│   │   ├── jscolor
│   │   │   ├── arrow.gif
│   │   │   ├── cross.gif
│   │   │   ├── hs.png
│   │   │   ├── hv.png
│   │   │   └── jscolor.js
│   │   ├── open.html
│   │   ├── resources
│   │   │   ├── grapheditor.properties
│   │   │   ├── grapheditor_de.properties
│   │   │   ├── help.html
│   │   │   └── help_de.html
│   │   ├── stencils
│   │   │   ├── arrows.xml
│   │   │   ├── aws
│   │   │   │   ├── compute.xml
│   │   │   │   ├── content_delivery.xml
│   │   │   │   ├── database.xml
│   │   │   │   ├── deployment_management.xml
│   │   │   │   ├── groups.xml
│   │   │   │   ├── messaging.xml
│   │   │   │   ├── misc.xml
│   │   │   │   ├── networking.xml
│   │   │   │   ├── non_service_specific.xml
│   │   │   │   ├── on_demand_workforce.xml
│   │   │   │   └── storage.xml
│   │   │   ├── basic.xml
│   │   │   ├── bpmn.xml
│   │   │   ├── clipart
│   │   │   │   ├── Credit_Card_128x128.png
│   │   │   │   ├── Database_128x128.png
│   │   │   │   ├── Doctor1_128x128.png
│   │   │   │   ├── Earth_globe_128x128.png
│   │   │   │   ├── Email_128x128.png
│   │   │   │   ├── Empty_Folder_128x128.png
│   │   │   │   ├── Firewall_02_128x128.png
│   │   │   │   ├── Full_Folder_128x128.png
│   │   │   │   ├── Gear_128x128.png
│   │   │   │   ├── Graph_128x128.png
│   │   │   │   ├── Laptop_128x128.png
│   │   │   │   ├── Lock_128x128.png
│   │   │   │   ├── MacBook_128x128.png
│   │   │   │   ├── Monitor_Tower_128x128.png
│   │   │   │   ├── Piggy_Bank_128x128.png
│   │   │   │   ├── Pilot1_128x128.png
│   │   │   │   ├── Printer_128x128.png
│   │   │   │   ├── Router_Icon_128x128.png
│   │   │   │   ├── Safe_128x128.png
│   │   │   │   ├── Security1_128x128.png
│   │   │   │   ├── Server_Tower_128x128.png
│   │   │   │   ├── Shopping_Cart_128x128.png
│   │   │   │   ├── Software_128x128.png
│   │   │   │   ├── Soldier1_128x128.png
│   │   │   │   ├── Suit1_128x128.png
│   │   │   │   ├── Suit2_128x128.png
│   │   │   │   ├── Suit3_128x128.png
│   │   │   │   ├── Tech1_128x128.png
│   │   │   │   ├── Telesales1_128x128.png
│   │   │   │   ├── Virtual_Machine_128x128.png
│   │   │   │   ├── Virus_128x128.png
│   │   │   │   ├── Wireless_Router_N_128x128.png
│   │   │   │   ├── Worker1_128x128.png
│   │   │   │   ├── Workstation_128x128.png
│   │   │   │   ├── iMac_128x128.png
│   │   │   │   └── iPad_128x128.png
│   │   │   ├── electrical
│   │   │   │   ├── abstract.xml
│   │   │   │   ├── capacitors.xml
│   │   │   │   ├── diodes.xml
│   │   │   │   ├── electro-mechanical.xml
│   │   │   │   ├── iec417.xml
│   │   │   │   ├── iec_logic_gates.xml
│   │   │   │   ├── inductors.xml
│   │   │   │   ├── instruments.xml
│   │   │   │   ├── logic_gates.xml
│   │   │   │   ├── miscellaneous.xml
│   │   │   │   ├── mosfets1.xml
│   │   │   │   ├── mosfets2.xml
│   │   │   │   ├── op_amps.xml
│   │   │   │   ├── opto-electronics.xml
│   │   │   │   ├── opto_electronics.xml
│   │   │   │   ├── plc_ladder.xml
│   │   │   │   ├── power_semiconductors.xml
│   │   │   │   ├── radio.xml
│   │   │   │   ├── resistors.xml
│   │   │   │   ├── signal_sources.xml
│   │   │   │   ├── thermionic_devices.xml
│   │   │   │   ├── transistors.xml
│   │   │   │   └── waveforms.xml
│   │   │   ├── flowchart.xml
│   │   │   ├── general.xml
│   │   │   ├── lean_mapping.xml
│   │   │   ├── mockup
│   │   │   │   ├── advertising.xml
│   │   │   │   ├── calendars.xml
│   │   │   │   ├── carousel.xml
│   │   │   │   ├── charts_and_tables.xml
│   │   │   │   ├── controls.xml
│   │   │   │   ├── form_elements.xml
│   │   │   │   ├── menus_and_buttons.xml
│   │   │   │   ├── misc.xml
│   │   │   │   └── tabs.xml
│   │   │   ├── pid
│   │   │   │   ├── compressors.xml
│   │   │   │   ├── heat_exchangers.xml
│   │   │   │   ├── instruments.xml
│   │   │   │   ├── pumps.xml
│   │   │   │   ├── valves.xml
│   │   │   │   └── vessels.xml
│   │   │   └── signs
│   │   │   ├── animals.xml
│   │   │   ├── food.xml
│   │   │   ├── healthcare.xml
│   │   │   ├── nature.xml
│   │   │   ├── people.xml
│   │   │   ├── safety.xml
│   │   │   ├── science.xml
│   │   │   ├── sports.xml
│   │   │   ├── tech.xml
│   │   │   ├── transportation.xml
│   │   │   └── travel.xml
│   │   └── styles
│   │   ├── default.xml
│   │   ├── grapheditor-ie6.css
│   │   ├── grapheditor.css
│   │   ├── help.css
│   │   ├── sprites.png
│   │   ├── thumb_horz.png
│   │   └── thumb_vertical.png
│   ├── graphlayout.html
│   ├── grid.html
│   ├── groups.html
│   ├── guides.html
│   ├── helloport.html
│   ├── helloworld.html
│   ├── hierarchicallayout.html
│   ├── hovericons.html
│   ├── ie9svg.html
│   ├── images
│   │   ├── add.png
│   │   ├── camera.png
│   │   ├── check.png
│   │   ├── close.png
│   │   ├── connector.gif
│   │   ├── copy.png
│   │   ├── cut.png
│   │   ├── delete2.png
│   │   ├── dot.gif
│   │   ├── export1.png
│   │   ├── fit_to_size.png
│   │   ├── gradient_background.jpg
│   │   ├── gray-dot.gif
│   │   ├── green-dot.gif
│   │   ├── green-dot2.gif
│   │   ├── group.png
│   │   ├── icons48
│   │   │   ├── column.png
│   │   │   ├── earth.png
│   │   │   ├── gear.png
│   │   │   ├── keys.png
│   │   │   ├── mail_new.png
│   │   │   ├── server.png
│   │   │   └── table.png
│   │   ├── key.png
│   │   ├── loading.gif
│   │   ├── navigate_minus.png
│   │   ├── navigate_plus.png
│   │   ├── paste.png
│   │   ├── plus.png
│   │   ├── press32.png
│   │   ├── print32.png
│   │   ├── printer.png
│   │   ├── redo.png
│   │   ├── sidebar_bg.gif
│   │   ├── spacer.gif
│   │   ├── toolbar_bg.gif
│   │   ├── undo.png
│   │   ├── view_1_1.png
│   │   ├── view_1_132.png
│   │   ├── view_next.png
│   │   ├── view_previous.png
│   │   ├── wires-grid.gif
│   │   ├── zoom_in.png
│   │   ├── zoom_in32.png
│   │   ├── zoom_out.png
│   │   └── zoom_out32.png
│   ├── images.html
│   ├── indicators.html
│   ├── labelposition.html
│   ├── labels.html
│   ├── layers.html
│   ├── markers.html
│   ├── menustyle.html
│   ├── merge.html
│   ├── monitor.html
│   ├── offpage.html
│   ├── orgchart.html
│   ├── orthogonal.html
│   ├── overlays.html
│   ├── pagebreaks.html
│   ├── perimeter.html
│   ├── permissions.html
│   ├── portrefs.html
│   ├── ports.html
│   ├── portview.html
│   ├── schema.html
│   ├── scrollbars.html
│   ├── secondlabel.html
│   ├── serverview.html
│   ├── shape.html
│   ├── standardsmode.html
│   ├── stencils.html
│   ├── stencils.xml
│   ├── stylesheet.html
│   ├── swimlanes.html
│   ├── template.html
│   ├── thread.html
│   ├── toolbar.html
│   ├── tree.html
│   ├── uiconfig.html
│   ├── uiconfig.xml
│   ├── userobject.html
│   ├── validation.html
│   ├── windows.html
│   ├── wires.html
│   └── wrapping.html
├── index.html
├── src
│   ├── css
│   │   ├── common.css
│   │   └── explorer.css
│   ├── images
│   │   ├── button.gif
│   │   ├── close.gif
│   │   ├── collapsed.gif
│   │   ├── error.gif
│   │   ├── expanded.gif
│   │   ├── maximize.gif
│   │   ├── minimize.gif
│   │   ├── normalize.gif
│   │   ├── point.gif
│   │   ├── resize.gif
│   │   ├── separator.gif
│   │   ├── submenu.gif
│   │   ├── transparent.gif
│   │   ├── warning.gif
│   │   ├── warning.png
│   │   ├── window-title.gif
│   │   └── window.gif
│   ├── js
│   │   └── mxClient.js
│   └── resources
│   ├── editor.properties
│   ├── editor_de.properties
│   ├── editor_zh.properties
│   ├── graph.properties
│   ├── graph_de.properties
│   └── graph_zh.properties
└── 新建文本文档.txt

62 directories, 623 files

标签:

实例下载地址

mxGraph.zip

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警