【例子介绍】Delphi绘制曲线
【相关图片】
【源码结构】
.
├── Dcu
│ ├── AdvDateTimePicker.dcu
│ ├── AdvGDIP.dcu
│ ├── AdvGrid.dcu
│ ├── AdvHintInfo.dcu
│ ├── AdvObj.dcu
│ ├── AdvStyleIF.dcu
│ ├── AdvUtil.dcu
│ ├── AdvXPVS.dcu
│ ├── AsgCheck.dcu
│ ├── AsgCombo.dcu
│ ├── AsgDD.dcu
│ ├── AsgEdit.dcu
│ ├── AsgHTMLE.dcu
│ ├── AsgSpin.dcu
│ ├── AsgUni.dcu
│ ├── BaseGrid.dcu
│ ├── FormDlg.dcu
│ ├── GDIPicture.dcu
│ ├── PNGImage.dcu
│ ├── PictureContainer.dcu
│ ├── UnitChannelSelect.dcu
│ ├── iCheckBox.dcu
│ ├── iClasses.dcu
│ ├── iColorDialog.dcu
│ ├── iComponent.dcu
│ ├── iComponentEditorButtonPanel.dcu
│ ├── iComponentEditorForm.dcu
│ ├── iComponentEditorThemePanel.dcu
│ ├── iComponentEditorThemePanelAddDialog.dcu
│ ├── iComponentEditorThemePanelMaintenance.dcu
│ ├── iCustomComponent.dcu
│ ├── iDataNullList.dcu
│ ├── iDateUtils.dcu
│ ├── iDoubleList.dcu
│ ├── iEditorBasicComponents.dcu
│ ├── iFontDialog.dcu
│ ├── iGPFunctions.dcu
│ ├── iMath.dcu
│ ├── iOPCBrowserPanel.dcu
│ ├── iOPCComputerSelector.dcu
│ ├── iOPCDLLLoader.dcu
│ ├── iOPCGroupSelector.dcu
│ ├── iOPCItem.dcu
│ ├── iOPCItemSelector.dcu
│ ├── iOPCPropertySelector.dcu
│ ├── iOPCServerSelector.dcu
│ ├── iOpenDialog.dcu
│ ├── iPlot.dcu
│ ├── iPlotAnnotation.dcu
│ ├── iPlotAxis.dcu
│ ├── iPlotChannel.dcu
│ ├── iPlotChannelCustom.dcu
│ ├── iPlotComponent.dcu
│ ├── iPlotDataCompactIntervalList.dcu
│ ├── iPlotDataCompactList.dcu
│ ├── iPlotDataCursor.dcu
│ ├── iPlotDataCustomList.dcu
│ ├── iPlotDataFullList.dcu
│ ├── iPlotDataNullList.dcu
│ ├── iPlotDataView.dcu
│ ├── iPlotEditor.dcu
│ ├── iPlotLabel.dcu
│ ├── iPlotLayoutManager.dcu
│ ├── iPlotLayoutViewer.dcu
│ ├── iPlotLegend.dcu
│ ├── iPlotLimit.dcu
│ ├── iPlotManagers.dcu
│ ├── iPlotMasterManager.dcu
│ ├── iPlotObjects.dcu
│ ├── iPlotPreview.dcu
│ ├── iPlotPreviewSettings.dcu
│ ├── iPlotTable.dcu
│ ├── iPlotToolBar.dcu
│ ├── iPlotTranslation.dcu
│ ├── iRadioGroup.dcu
│ ├── iSaveDialog.dcu
│ ├── iTypes.dcu
│ ├── iVCLComponent.dcu
│ ├── iValueConverterEdit.dcu
│ ├── iXYPlot.dcu
│ ├── iXYPlotChannel.dcu
│ ├── pnglang.dcu
│ ├── pngzlib.dcu
│ ├── uConstDefine.dcu
│ ├── uFileDefine.dcu
│ ├── uGraphi.dcu
│ ├── uGraphiThread.dcu
│ ├── uProgressForm.dcu
│ ├── uSystem.dcu
│ └── uTypeDefine.dcu
├── Src20211124
│ ├── FormDlg.dcu
│ ├── FormDlg.ddp
│ ├── FormDlg.dfm
│ ├── FormDlg.pas
│ ├── FormDlg.~ddp
│ ├── FormDlg.~dfm
│ ├── FormDlg.~pas
│ ├── GraphiManage.cfg
│ ├── GraphiManage.dof
│ ├── GraphiManage.dpr
│ ├── GraphiManage.res
│ ├── GraphiManage.~dpr
│ ├── UnitChannelSelect.dcu
│ ├── UnitChannelSelect.ddp
│ ├── UnitChannelSelect.dfm
│ ├── UnitChannelSelect.pas
│ ├── UnitChannelSelect.~ddp
│ ├── UnitChannelSelect.~dfm
│ ├── UnitChannelSelect.~pas
│ ├── uConstDefine.dcu
│ ├── uConstDefine.pas
│ ├── uConstDefine.~pas
│ ├── uFileDefine.dcu
│ ├── uFileDefine.pas
│ ├── uFileDefine.~pas
│ ├── uGraphi.dcu
│ ├── uGraphi.ddp
│ ├── uGraphi.dfm
│ ├── uGraphi.pas
│ ├── uGraphi.~ddp
│ ├── uGraphi.~dfm
│ ├── uGraphi.~pas
│ ├── uGraphiThread.dcu
│ ├── uGraphiThread.pas
│ ├── uGraphiThread.~pas
│ ├── uProgressForm.dcu
│ ├── uProgressForm.ddp
│ ├── uProgressForm.dfm
│ ├── uProgressForm.pas
│ ├── uProgressForm.~ddp
│ ├── uProgressForm.~dfm
│ ├── uProgressForm.~pas
│ ├── uSystem.dcu
│ ├── uSystem.pas
│ ├── uSystem.~pas
│ ├── uTypeDefine.dcu
│ ├── uTypeDefine.pas
│ └── uTypeDefine.~pas
└── 好例子网_曲线程序.rar
2 directories, 139 files
评论