在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例C#语言基础 → C#手写输入控件

C#手写输入控件

C#语言基础

下载此实例
  • 开发语言:C#
  • 实例大小:83.50M
  • 下载次数:10
  • 浏览次数:87
  • 发布时间:2023-11-12
  • 实例类别:C#语言基础
  • 发 布 人:gaoteng
  • 文件格式:.rar
  • 所需积分:2
 相关标签: 输入 手写 控件

实例介绍

【实例简介】C#手写输入控件

【实例截图】

from clipboard

from clipboard

from clipboard

【核心代码】

.
├── C#手写输入控件_KH_Controls.rar
└── KH_Controls
    ├── KHCustom_Controls.sln
    ├── KH_Controls
    │   ├── Colors
    │   │   ├── BasisColors.cs
    │   │   ├── BorderColors.cs
    │   │   ├── ColorEnums.cs
    │   │   ├── ColorExt.cs
    │   │   ├── GradientColors.cs
    │   │   ├── LineColors.cs
    │   │   ├── StatusColors.cs
    │   │   ├── TableColors.cs
    │   │   └── TextColors.cs
    │   ├── Controls
    │   │   ├── Btn
    │   │   │   ├── KHBtnExt.Designer.cs
    │   │   │   ├── KHBtnExt.cs
    │   │   │   ├── KHBtnExt.resx
    │   │   │   ├── KHBtnFillet.Designer.cs
    │   │   │   ├── KHBtnFillet.cs
    │   │   │   ├── KHBtnFillet.resx
    │   │   │   ├── KHBtnImg.Designer.cs
    │   │   │   ├── KHBtnImg.cs
    │   │   │   ├── KHBtnImg.resx
    │   │   │   ├── KHDropDownBtn.Designer.cs
    │   │   │   ├── KHDropDownBtn.cs
    │   │   │   └── KHDropDownBtn.resx
    │   │   ├── BtnsGroup
    │   │   │   ├── KHBtnsGroup.Designer.cs
    │   │   │   ├── KHBtnsGroup.cs
    │   │   │   └── KHBtnsGroup.resx
    │   │   ├── Charts
    │   │   │   ├── AuxiliaryLable.cs
    │   │   │   ├── AuxiliaryLine.cs
    │   │   │   ├── FunnelChart
    │   │   │   │   ├── FunelChartAlignment.cs
    │   │   │   │   ├── FunelChartDirection.cs
    │   │   │   │   ├── FunelChartItem.cs
    │   │   │   │   └── KHFunnelChart.cs
    │   │   │   ├── MarkText.cs
    │   │   │   ├── MarkTextPositionStyle.cs
    │   │   │   ├── RadarChart
    │   │   │   │   ├── KHRadarChart.cs
    │   │   │   │   ├── RadarLine.cs
    │   │   │   │   └── RadarPosition.cs
    │   │   │   └── ZoomType.cs
    │   │   ├── Checkbox
    │   │   │   ├── KHCheckBox.Designer.cs
    │   │   │   ├── KHCheckBox.cs
    │   │   │   └── KHCheckBox.resx
    │   │   ├── ComboBox
    │   │   │   ├── KHCombox.Designer.cs
    │   │   │   ├── KHCombox.cs
    │   │   │   ├── KHCombox.resx
    │   │   │   ├── KHComboxGrid.Designer.cs
    │   │   │   ├── KHComboxGrid.cs
    │   │   │   ├── KHComboxGrid.resx
    │   │   │   ├── KHComboxGridPanel.Designer.cs
    │   │   │   ├── KHComboxGridPanel.cs
    │   │   │   └── KHComboxGridPanel.resx
    │   │   ├── DataGridView
    │   │   │   ├── DataGridViewCellEntity.cs
    │   │   │   ├── DataGridViewCellEventArgs.cs
    │   │   │   ├── DataGridViewCellEventHandler.cs
    │   │   │   ├── DataGridViewColumnEntity.cs
    │   │   │   ├── DataGridViewRowCustomEventArgs.cs
    │   │   │   ├── IDataGridViewCustomCell.cs
    │   │   │   ├── IDataGridViewRow.cs
    │   │   │   ├── KHDataGridView.Designer.cs
    │   │   │   ├── KHDataGridView.cs
    │   │   │   ├── KHDataGridView.resx
    │   │   │   ├── KHDataGridViewRow.Designer.cs
    │   │   │   ├── KHDataGridViewRow.cs
    │   │   │   ├── KHDataGridViewRow.resx
    │   │   │   ├── KHDataGridViewTreeRow.Designer.cs
    │   │   │   ├── KHDataGridViewTreeRow.cs
    │   │   │   └── KHDataGridViewTreeRow.resx
    │   │   ├── DateTime
    │   │   │   ├── DateTimePickerType.cs
    │   │   │   ├── KHCalendarNotes.Designer.cs
    │   │   │   ├── KHCalendarNotes.cs
    │   │   │   ├── KHCalendarNotes.resx
    │   │   │   ├── KHCalendarNotes_Week.Designer.cs
    │   │   │   ├── KHCalendarNotes_Week.cs
    │   │   │   ├── KHCalendarNotes_Week.resx
    │   │   │   ├── KHDatePickerExt.Designer.cs
    │   │   │   ├── KHDatePickerExt.cs
    │   │   │   ├── KHDatePickerExt.resx
    │   │   │   ├── KHDatePickerExt2.Designer.cs
    │   │   │   ├── KHDatePickerExt2.cs
    │   │   │   ├── KHDatePickerExt2.resx
    │   │   │   ├── KHDateTimeSelectPan.Designer.cs
    │   │   │   ├── KHDateTimeSelectPan.cs
    │   │   │   ├── KHDateTimeSelectPan.resx
    │   │   │   ├── KHDateTimeSelectPan2.Designer.cs
    │   │   │   ├── KHDateTimeSelectPan2.cs
    │   │   │   ├── KHDateTimeSelectPan2.resx
    │   │   │   ├── KHTimePanel.Designer.cs
    │   │   │   ├── KHTimePanel.cs
    │   │   │   └── KHTimePanel.resx
    │   │   ├── FactoryControls
    │   │   │   ├── Arrow
    │   │   │   │   └── KHArrow.cs
    │   │   │   ├── Blower
    │   │   │   │   ├── KHBlower.cs
    │   │   │   │   └── KHBlower.resx
    │   │   │   ├── Bottle
    │   │   │   │   └── KHBottle.cs
    │   │   │   ├── Conduit
    │   │   │   │   └── KHConduit.cs
    │   │   │   ├── Conveyor
    │   │   │   │   └── KHConveyor.cs
    │   │   │   ├── DialAisle
    │   │   │   │   ├── KHDialAisle.Designer.cs
    │   │   │   │   └── KHDialAisle.cs
    │   │   │   ├── EllipseDialAisle
    │   │   │   │   ├── KHEllipseDialAisle.Designer.cs
    │   │   │   │   ├── KHEllipseDialAisle.cs
    │   │   │   │   └── KHEllipseDialAisle.resx
    │   │   │   ├── House
    │   │   │   │   ├── KHHouse.Designer.cs
    │   │   │   │   └── KHHouse.cs
    │   │   │   ├── Lamp
    │   │   │   │   ├── KHAlarmLamp.cs
    │   │   │   │   └── KHSignalLamp.cs
    │   │   │   ├── Meter
    │   │   │   │   └── KHMeter.cs
    │   │   │   ├── MindMapping
    │   │   │   │   ├── KHMindMapping.cs
    │   │   │   │   ├── KHMindMappingPanel.Designer.cs
    │   │   │   │   ├── KHMindMappingPanel.cs
    │   │   │   │   ├── KHMindMappingPanel.resx
    │   │   │   │   └── MindMappingItemEntity.cs
    │   │   │   ├── Pond
    │   │   │   │   └── KHPond.cs
    │   │   │   ├── Rotor
    │   │   │   │   ├── KHRotor.Designer.cs
    │   │   │   │   ├── KHRotor.cs
    │   │   │   │   └── KHRotor.resx
    │   │   │   ├── Syringe
    │   │   │   │   ├── KHSyringe_Horizontal.Designer.cs
    │   │   │   │   ├── KHSyringe_Horizontal.cs
    │   │   │   │   ├── KHSyringe_Horizontal.resx
    │   │   │   │   ├── KHSyringe_Vertical.Designer.cs
    │   │   │   │   ├── KHSyringe_Vertical.cs
    │   │   │   │   └── KHSyringe_Vertical.resx
    │   │   │   ├── Thermometer
    │   │   │   │   └── KHThermometer.cs
    │   │   │   ├── Turntable
    │   │   │   │   ├── KHTurntable.Designer.cs
    │   │   │   │   ├── KHTurntable.cs
    │   │   │   │   └── KHTurntable.resx
    │   │   │   └── Valve
    │   │   │       └── KHValve.cs
    │   │   ├── GraphicalOverlay
    │   │   │   ├── GraphicalOverlayComponent.cs
    │   │   │   └── GraphicalOverlayComponent.designer.cs
    │   │   ├── KHControlBase.Designer.cs
    │   │   ├── KHControlBase.cs
    │   │   ├── KHControlBase.resx
    │   │   ├── KeyBord
    │   │   │   ├── KHKeyBorderAll.Designer.cs
    │   │   │   ├── KHKeyBorderAll.cs
    │   │   │   ├── KHKeyBorderAll.resx
    │   │   │   ├── KHKeyBorderIDCard.Designer.cs
    │   │   │   ├── KHKeyBorderIDCard.cs
    │   │   │   ├── KHKeyBorderIDCard.resx
    │   │   │   ├── KHKeyBorderNum.Designer.cs
    │   │   │   ├── KHKeyBorderNum.cs
    │   │   │   ├── KHKeyBorderNum.resx
    │   │   │   ├── KHKeyBorderPay.Designer.cs
    │   │   │   ├── KHKeyBorderPay.cs
    │   │   │   └── KHKeyBorderPay.resx
    │   │   ├── LED
    │   │   │   ├── KHLEDData.Designer.cs
    │   │   │   ├── KHLEDData.cs
    │   │   │   ├── KHLEDData.resx
    │   │   │   ├── KHLEDDataTime.Designer.cs
    │   │   │   ├── KHLEDDataTime.cs
    │   │   │   ├── KHLEDDataTime.resx
    │   │   │   ├── KHLEDNum.cs
    │   │   │   ├── KHLEDNums.Designer.cs
    │   │   │   ├── KHLEDNums.cs
    │   │   │   ├── KHLEDNums.resx
    │   │   │   ├── KHLEDTime.Designer.cs
    │   │   │   ├── KHLEDTime.cs
    │   │   │   └── KHLEDTime.resx
    │   │   ├── List
    │   │   │   ├── IListViewItem.cs
    │   │   │   ├── KHHorizontalList.Designer.cs
    │   │   │   ├── KHHorizontalList.cs
    │   │   │   ├── KHHorizontalList.resx
    │   │   │   ├── KHHorizontalListItem.Designer.cs
    │   │   │   ├── KHHorizontalListItem.cs
    │   │   │   ├── KHHorizontalListItem.resx
    │   │   │   ├── KHListExt.Designer.cs
    │   │   │   ├── KHListExt.cs
    │   │   │   ├── KHListExt.resx
    │   │   │   ├── KHListItemExt.Designer.cs
    │   │   │   ├── KHListItemExt.cs
    │   │   │   ├── KHListItemExt.resx
    │   │   │   ├── KHListView.Designer.cs
    │   │   │   ├── KHListView.cs
    │   │   │   ├── KHListView.resx
    │   │   │   ├── KHListViewItem.Designer.cs
    │   │   │   ├── KHListViewItem.cs
    │   │   │   └── KHListViewItem.resx
    │   │   ├── Menu
    │   │   │   ├── IMenuItem.cs
    │   │   │   ├── KHMenu.Designer.cs
    │   │   │   ├── KHMenu.cs
    │   │   │   ├── KHMenu.resx
    │   │   │   ├── KHMenuChildrenItem.Designer.cs
    │   │   │   ├── KHMenuChildrenItem.cs
    │   │   │   ├── KHMenuChildrenItem.resx
    │   │   │   ├── KHMenuParentItem.Designer.cs
    │   │   │   ├── KHMenuParentItem.cs
    │   │   │   ├── KHMenuParentItem.resx
    │   │   │   └── MenuItemEntity.cs
    │   │   ├── Navigation
    │   │   │   ├── CrumbNavigationClickEventArgs.cs
    │   │   │   ├── CrumbNavigationItem.cs
    │   │   │   ├── KHCrumbNavigation.Designer.cs
    │   │   │   ├── KHCrumbNavigation.cs
    │   │   │   └── KHCrumbNavigation.resx
    │   │   ├── NavigationMenu
    │   │   │   ├── KHNavigationMenu.Designer.cs
    │   │   │   ├── KHNavigationMenu.cs
    │   │   │   ├── KHNavigationMenu.resx
    │   │   │   ├── KHNavigationMenuExt.Designer.cs
    │   │   │   ├── KHNavigationMenuExt.cs
    │   │   │   ├── KHNavigationMenuExt.resx
    │   │   │   ├── KHNavigationMenuOffice.Designer.cs
    │   │   │   ├── KHNavigationMenuOffice.cs
    │   │   │   ├── KHNavigationMenuOffice.resx
    │   │   │   ├── NavigationMenuItem.cs
    │   │   │   ├── NavigationMenuItemBase.cs
    │   │   │   └── NavigationMenuItemExt.cs
    │   │   ├── Page
    │   │   │   ├── IPageControl.cs
    │   │   │   ├── KHPagerControl.Designer.cs
    │   │   │   ├── KHPagerControl.cs
    │   │   │   ├── KHPagerControl.resx
    │   │   │   ├── KHPagerControl2.Designer.cs
    │   │   │   ├── KHPagerControl2.cs
    │   │   │   ├── KHPagerControl2.resx
    │   │   │   ├── KHPagerControlBase.cs
    │   │   │   ├── KHPagerControlBase.resx
    │   │   │   ├── PageControlEventHandler.cs
    │   │   │   └── PageModel.cs
    │   │   ├── Panel
    │   │   │   ├── KHPanelQuote.cs
    │   │   │   ├── KHPanelTitle.Designer.cs
    │   │   │   ├── KHPanelTitle.cs
    │   │   │   └── KHPanelTitle.resx
    │   │   ├── Process
    │   │   │   ├── KHProcessEllipse.Designer.cs
    │   │   │   ├── KHProcessEllipse.cs
    │   │   │   ├── KHProcessEllipse.resx
    │   │   │   ├── KHProcessExt.Designer.cs
    │   │   │   ├── KHProcessExt.cs
    │   │   │   ├── KHProcessExt.resx
    │   │   │   ├── KHProcessLine.cs
    │   │   │   ├── KHProcessLineExt.Designer.cs
    │   │   │   ├── KHProcessLineExt.cs
    │   │   │   ├── KHProcessLineExt.resx
    │   │   │   ├── KHProcessRoll.cs
    │   │   │   ├── KHProcessWave.Designer.cs
    │   │   │   ├── KHProcessWave.cs
    │   │   │   └── KHProcessWave.resx
    │   │   ├── RadioButton
    │   │   │   ├── KHRadioButton.Designer.cs
    │   │   │   ├── KHRadioButton.cs
    │   │   │   └── KHRadioButton.resx
    │   │   ├── Roll
    │   │   │   └── KHRollText.cs
    │   │   ├── Sampling
    │   │   │   └── KHSampling.cs
    │   │   ├── ScrollBar
    │   │   │   ├── KHHScrollbar.cs
    │   │   │   ├── KHVScrollbar.cs
    │   │   │   ├── KHVScrollbar.resx
    │   │   │   ├── ScrollbarComponent.cs
    │   │   │   └── ScrollbarControlDesigner.cs
    │   │   ├── Shadow
    │   │   │   └── ShadowComponent.cs
    │   │   ├── Split
    │   │   │   ├── KHSplitLine_H.Designer.cs
    │   │   │   ├── KHSplitLine_H.cs
    │   │   │   ├── KHSplitLine_H.resx
    │   │   │   ├── KHSplitLine_V.Designer.cs
    │   │   │   ├── KHSplitLine_V.cs
    │   │   │   └── KHSplitLine_V.resx
    │   │   ├── SplitLabel
    │   │   │   └── KHSplitLabel.cs
    │   │   ├── Step
    │   │   │   ├── KHStep.Designer.cs
    │   │   │   ├── KHStep.cs
    │   │   │   └── KHStep.resx
    │   │   ├── Switch
    │   │   │   ├── KHSwitch.Designer.cs
    │   │   │   ├── KHSwitch.cs
    │   │   │   ├── KHSwitch.resx
    │   │   │   ├── TextBoxEx.Designer.cs
    │   │   │   └── TextBoxEx.cs
    │   │   ├── Tab
    │   │   │   └── TabControlExt.cs
    │   │   ├── Text
    │   │   │   ├── KHNumTextBox.Designer.cs
    │   │   │   ├── KHNumTextBox.cs
    │   │   │   ├── KHNumTextBox.resx
    │   │   │   ├── KHTextBoxEx.Designer.cs
    │   │   │   ├── KHTextBoxEx.cs
    │   │   │   ├── KHTextBoxEx.resx
    │   │   │   ├── KeyBoardType.cs
    │   │   │   ├── TextBoxEx.Designer.cs
    │   │   │   ├── TextBoxEx.cs
    │   │   │   ├── TextBoxTransparent.cs
    │   │   │   ├── TextBoxTransparent.resx
    │   │   │   └── win32.cs
    │   │   ├── TimeLine
    │   │   │   ├── KHTimeLine.Designer.cs
    │   │   │   ├── KHTimeLine.cs
    │   │   │   └── KHTimeLine.resx
    │   │   ├── ToolStripRendererEx
    │   │   │   ├── ControlPaintEx.cs
    │   │   │   ├── GraphicsPathHelper.cs
    │   │   │   ├── InterpolationModeGraphics.cs
    │   │   │   ├── ProfessionalToolStripRendererEx.cs
    │   │   │   ├── RegionHelper.cs
    │   │   │   ├── RenderHelper.cs
    │   │   │   ├── RoundStyle.cs
    │   │   │   ├── SmoothingModeGraphics.cs
    │   │   │   ├── TextRenderingHintGraphics.cs
    │   │   │   └── ToolStripColorTable.cs
    │   │   ├── TrackBar
    │   │   │   └── KHTrackBar.cs
    │   │   ├── Transfer
    │   │   │   ├── KHTransfer.Designer.cs
    │   │   │   ├── KHTransfer.cs
    │   │   │   ├── KHTransfer.resx
    │   │   │   └── TransferEventArgs.cs
    │   │   ├── Treeview
    │   │   │   └── TreeViewEx.cs
    │   │   ├── Verification
    │   │   │   ├── VerificationAttribute.cs
    │   │   │   ├── VerificationComponent.cs
    │   │   │   ├── VerificationEventArgs.cs
    │   │   │   └── VerificationModel.cs
    │   │   └── Wave
    │   │       ├── KHWave.cs
    │   │       └── KHWaveChart.cs
    │   ├── Forms
    │   │   ├── FrmAnchor.Designer.cs
    │   │   ├── FrmAnchor.cs
    │   │   ├── FrmAnchor.resx
    │   │   ├── FrmAnchorTips.Designer.cs
    │   │   ├── FrmAnchorTips.cs
    │   │   ├── FrmAnchorTips.resx
    │   │   ├── FrmBack.Designer.cs
    │   │   ├── FrmBack.cs
    │   │   ├── FrmBack.resx
    │   │   ├── FrmBase.Designer.cs
    │   │   ├── FrmBase.cs
    │   │   ├── FrmBase.resx
    │   │   ├── FrmDialog.Designer.cs
    │   │   ├── FrmDialog.cs
    │   │   ├── FrmDialog.resx
    │   │   ├── FrmInputs.Designer.cs
    │   │   ├── FrmInputs.cs
    │   │   ├── FrmInputs.resx
    │   │   ├── FrmLoading.Designer.cs
    │   │   ├── FrmLoading.cs
    │   │   ├── FrmLoading.resx
    │   │   ├── FrmTips.Designer.cs
    │   │   ├── FrmTips.cs
    │   │   ├── FrmTips.resx
    │   │   ├── FrmTransparent.Designer.cs
    │   │   ├── FrmTransparent.cs
    │   │   ├── FrmTransparent.resx
    │   │   ├── FrmWaiting.Designer.cs
    │   │   ├── FrmWaiting.cs
    │   │   ├── FrmWaiting.resx
    │   │   ├── FrmWithOKCancel1.Designer.cs
    │   │   ├── FrmWithOKCancel1.cs
    │   │   ├── FrmWithOKCancel1.resx
    │   │   ├── FrmWithOKCancel2.Designer.cs
    │   │   ├── FrmWithOKCancel2.cs
    │   │   ├── FrmWithOKCancel2.resx
    │   │   ├── FrmWithTitle.Designer.cs
    │   │   ├── FrmWithTitle.cs
    │   │   └── FrmWithTitle.resx
    │   ├── HandInput
    │   │   ├── HandInput.dll
    │   │   ├── HandInput64.dll
    │   │   ├── bak
    │   │   │   ├── HandInput.dll
    │   │   │   ├── HandInput64.dll
    │   │   │   ├── certificate
    │   │   │   ├── certificate64
    │   │   │   ├── handinput - old.ini
    │   │   │   ├── handinput.cupf
    │   │   │   ├── handinput.exe
    │   │   │   ├── handinput.ini
    │   │   │   ├── icon.png
    │   │   │   ├── lm_HW_PB_7000_kn.arpa.7e9.prune.1e-7.lm.fixed
    │   │   │   ├── overlapEngine.dll
    │   │   │   ├── sgim_annex.bin
    │   │   │   ├── sgim_hz.bin
    │   │   │   ├── sgim_py.bin
    │   │   │   └── singleEngine.dll
    │   │   ├── certificate
    │   │   ├── certificate64
    │   │   ├── handinput.cupf
    │   │   ├── handinput.exe
    │   │   ├── handinput.ini
    │   │   ├── icon.png
    │   │   ├── lm_HW_PB_7000_kn.arpa.7e9.prune.1e-7.lm.fixed
    │   │   ├── overlapEngine.dll
    │   │   ├── sgim_annex.bin
    │   │   ├── sgim_hz.bin
    │   │   ├── sgim_py.bin
    │   │   └── singleEngine.dll
    │   ├── Helpers
    │   │   ├── ControlHelper.cs
    │   │   ├── Ext.cs
    │   │   ├── GraphDirection.cs
    │   │   ├── ITheme.cs
    │   │   ├── MouseHook.cs
    │   │   ├── NativeMethods.cs
    │   │   ├── TextInputType.cs
    │   │   └── WindowsHook.cs
    │   ├── IconFont
    │   │   ├── ElegantIcons.ttf
    │   │   ├── FontAwesome.ttf
    │   │   ├── FontIcons.cs
    │   │   └── FontImages.cs
    │   ├── KH_Controls.csproj
    │   ├── KH_Controls.csproj.user
    │   ├── KH_Controls.nuspec
    │   ├── KH_Controls.sln
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   └── Resources.resx
    │   ├── Resources
    │   │   ├── ComboBox.png
    │   │   ├── alarm.png
    │   │   ├── back.png
    │   │   ├── caret-down.png
    │   │   ├── caret-right.png
    │   │   ├── checkbox0.png
    │   │   ├── checkbox00.png
    │   │   ├── checkbox1.png
    │   │   ├── checkbox10.png
    │   │   ├── chevron-left.png
    │   │   ├── chevron-right.png
    │   │   ├── dateRight.png
    │   │   ├── datetLeft.png
    │   │   ├── dialog_close.png
    │   │   ├── down.png
    │   │   ├── end.png
    │   │   ├── error.png
    │   │   ├── first.png
    │   │   ├── handinput.exe
    │   │   ├── help.png
    │   │   ├── ic_add_black_18dp.png
    │   │   ├── ic_remove_black_18dp.png
    │   │   ├── ic_search_black_24dp.png
    │   │   ├── input_back.png
    │   │   ├── input_clear.png
    │   │   ├── keyboard.png
    │   │   ├── keyboard_bs.png
    │   │   ├── left.png
    │   │   ├── list_add.png
    │   │   ├── list_subtract.png
    │   │   ├── loading.gif
    │   │   ├── more1.png
    │   │   ├── qty_delete.png
    │   │   ├── radioButton0.png
    │   │   ├── radioButton00.png
    │   │   ├── radioButton1.png
    │   │   ├── radioButton10.png
    │   │   ├── right.png
    │   │   ├── rigth.png
    │   │   ├── sanjiao1.png
    │   │   ├── sanjiao2.png
    │   │   ├── success.png
    │   │   ├── tips.png
    │   │   ├── up.png
    │   │   └── warning.png
    │   ├── UIEditor
    │   │   ├── FrmSelectImage.Designer.cs
    │   │   ├── FrmSelectImage.cs
    │   │   ├── FrmSelectImage.resx
    │   │   └── ImagePropertyEditor.cs
    │   ├── app.config
    │   ├── bin
    │   │   ├── Debug
    │   │   ├── Release
    │   │   └── x86
    │   │       ├── Debug
    │   │       │   ├── HandInput
    │   │       │   │   ├── HandInput.dll
    │   │       │   │   ├── HandInput64.dll
    │   │       │   │   ├── certificate
    │   │       │   │   ├── certificate64
    │   │       │   │   ├── handinput.cupf
    │   │       │   │   ├── handinput.exe
    │   │       │   │   ├── handinput.ini
    │   │       │   │   ├── icon.png
    │   │       │   │   ├── lm_HW_PB_7000_kn.arpa.7e9.prune.1e-7.lm.fixed
    │   │       │   │   ├── overlapEngine.dll
    │   │       │   │   ├── sgim_annex.bin
    │   │       │   │   ├── sgim_hz.bin
    │   │       │   │   ├── sgim_py.bin
    │   │       │   │   └── singleEngine.dll
    │   │       │   ├── KH_Controls.dll
    │   │       │   ├── KH_Controls.dll.config
    │   │       │   └── KH_Controls.pdb
    │   │       └── Release
    │   ├── buidnuget.bat
    │   ├── nuget.exe
    │   └── obj
    │       └── x86
    │           └── Debug
    │               ├── DesignTimeResolveAssemblyReferences.cache
    │               ├── DesignTimeResolveAssemblyReferencesInput.cache
    │               ├── KH_Controls.Controls.FactoryControls.Syringe.KHSyringe_Horizontal.resources
    │               ├── KH_Controls.Controls.KHBlower.resources
    │               ├── KH_Controls.Controls.KHBtnExt.resources
    │               ├── KH_Controls.Controls.KHBtnFillet.resources
    │               ├── KH_Controls.Controls.KHBtnImg.resources
    │               ├── KH_Controls.Controls.KHBtnsGroup.resources
    │               ├── KH_Controls.Controls.KHCalendarNotes.resources
    │               ├── KH_Controls.Controls.KHCalendarNotes_Week.resources
    │               ├── KH_Controls.Controls.KHCheckBox.resources
    │               ├── KH_Controls.Controls.KHCombox.resources
    │               ├── KH_Controls.Controls.KHComboxGrid.resources
    │               ├── KH_Controls.Controls.KHComboxGridPanel.resources
    │               ├── KH_Controls.Controls.KHControlBase.resources
    │               ├── KH_Controls.Controls.KHCrumbNavigation.resources
    │               ├── KH_Controls.Controls.KHDataGridView.resources
    │               ├── KH_Controls.Controls.KHDataGridViewRow.resources
    │               ├── KH_Controls.Controls.KHDataGridViewTreeRow.resources
    │               ├── KH_Controls.Controls.KHDatePickerExt.resources
    │               ├── KH_Controls.Controls.KHDatePickerExt2.resources
    │               ├── KH_Controls.Controls.KHDateTimeSelectPan.resources
    │               ├── KH_Controls.Controls.KHDateTimeSelectPan2.resources
    │               ├── KH_Controls.Controls.KHDropDownBtn.resources
    │               ├── KH_Controls.Controls.KHEllipseDialAisle.resources
    │               ├── KH_Controls.Controls.KHHorizontalList.resources
    │               ├── KH_Controls.Controls.KHHorizontalListItem.resources
    │               ├── KH_Controls.Controls.KHKeyBorderAll.resources
    │               ├── KH_Controls.Controls.KHKeyBorderIDCard.resources
    │               ├── KH_Controls.Controls.KHKeyBorderNum.resources
    │               ├── KH_Controls.Controls.KHKeyBorderPay.resources
    │               ├── KH_Controls.Controls.KHLEDData.resources
    │               ├── KH_Controls.Controls.KHLEDDataTime.resources
    │               ├── KH_Controls.Controls.KHLEDNums.resources
    │               ├── KH_Controls.Controls.KHLEDTime.resources
    │               ├── KH_Controls.Controls.KHListExt.resources
    │               ├── KH_Controls.Controls.KHListItemExt.resources
    │               ├── KH_Controls.Controls.KHListView.resources
    │               ├── KH_Controls.Controls.KHListViewItem.resources
    │               ├── KH_Controls.Controls.KHMenu.resources
    │               ├── KH_Controls.Controls.KHMenuChildrenItem.resources
    │               ├── KH_Controls.Controls.KHMenuParentItem.resources
    │               ├── KH_Controls.Controls.KHMindMappingPanel.resources
    │               ├── KH_Controls.Controls.KHNavigationMenu.resources
    │               ├── KH_Controls.Controls.KHNavigationMenuExt.resources
    │               ├── KH_Controls.Controls.KHNavigationMenuOffice.resources
    │               ├── KH_Controls.Controls.KHNumTextBox.resources
    │               ├── KH_Controls.Controls.KHPagerControl.resources
    │               ├── KH_Controls.Controls.KHPagerControl2.resources
    │               ├── KH_Controls.Controls.KHPagerControlBase.resources
    │               ├── KH_Controls.Controls.KHPanelTitle.resources
    │               ├── KH_Controls.Controls.KHProcessEllipse.resources
    │               ├── KH_Controls.Controls.KHProcessExt.resources
    │               ├── KH_Controls.Controls.KHProcessLineExt.resources
    │               ├── KH_Controls.Controls.KHProcessWave.resources
    │               ├── KH_Controls.Controls.KHRadioButton.resources
    │               ├── KH_Controls.Controls.KHRotor.resources
    │               ├── KH_Controls.Controls.KHSplitLine_H.resources
    │               ├── KH_Controls.Controls.KHSplitLine_V.resources
    │               ├── KH_Controls.Controls.KHStep.resources
    │               ├── KH_Controls.Controls.KHSwitch.resources
    │               ├── KH_Controls.Controls.KHSyringe.resources
    │               ├── KH_Controls.Controls.KHTextBoxEx.resources
    │               ├── KH_Controls.Controls.KHTimeLine.resources
    │               ├── KH_Controls.Controls.KHTimePanel.resources
    │               ├── KH_Controls.Controls.KHTransfer.resources
    │               ├── KH_Controls.Controls.KHTurntable.resources
    │               ├── KH_Controls.Controls.KHVScrollbar.resources
    │               ├── KH_Controls.Controls.TextBoxTransparent.resources
    │               ├── KH_Controls.Forms.FrmAnchor.resources
    │               ├── KH_Controls.Forms.FrmAnchorTips.resources
    │               ├── KH_Controls.Forms.FrmBack.resources
    │               ├── KH_Controls.Forms.FrmBase.resources
    │               ├── KH_Controls.Forms.FrmDialog.resources
    │               ├── KH_Controls.Forms.FrmInputs.resources
    │               ├── KH_Controls.Forms.FrmLoading.resources
    │               ├── KH_Controls.Forms.FrmTips.resources
    │               ├── KH_Controls.Forms.FrmTransparent.resources
    │               ├── KH_Controls.Forms.FrmWaiting.resources
    │               ├── KH_Controls.Forms.FrmWithOKCancel1.resources
    │               ├── KH_Controls.Forms.FrmWithOKCancel2.resources
    │               ├── KH_Controls.Forms.FrmWithTitle.resources
    │               ├── KH_Controls.Properties.Resources.resources
    │               ├── KH_Controls.UIEditor.FrmSelectImage.resources
    │               ├── KH_Controls.csproj.CoreCompileInputs.cache
    │               ├── KH_Controls.csproj.FileListAbsolute.txt
    │               ├── KH_Controls.csproj.GenerateResource.cache
    │               ├── KH_Controls.csprojAssemblyReference.cache
    │               ├── KH_Controls.dll
    │               ├── KH_Controls.pdb
    │               ├── TempPE
    │               │   └── Properties.Resources.Designer.cs.dll
    │               ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
    │               ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
    │               └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
    ├── Test
    │   ├── FrmMain.Designer.cs
    │   ├── FrmMain.cs
    │   ├── FrmMain.resx
    │   ├── FrmOKCancel1Test.Designer.cs
    │   ├── FrmOKCancel1Test.cs
    │   ├── FrmOKCancel1Test.resx
    │   ├── FrmOKCancel2Test.Designer.cs
    │   ├── FrmOKCancel2Test.cs
    │   ├── FrmOKCancel2Test.resx
    │   ├── FrmTestFrmBack.Designer.cs
    │   ├── FrmTestFrmBack.cs
    │   ├── FrmTestFrmBack.resx
    │   ├── FrmTestLoading.Designer.cs
    │   ├── FrmTestLoading.cs
    │   ├── FrmTestLoading.resx
    │   ├── FrmWithTitleTest.Designer.cs
    │   ├── FrmWithTitleTest.cs
    │   ├── FrmWithTitleTest.resx
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── Resources
    │   │   └── rowicon.png
    │   ├── Test.csproj
    │   ├── Test.csproj.user
    │   ├── TestGridModel.cs
    │   ├── UC
    │   │   ├── UCTestArrow.Designer.cs
    │   │   ├── UCTestArrow.cs
    │   │   ├── UCTestArrow.resx
    │   │   ├── UCTestBlower.Designer.cs
    │   │   ├── UCTestBlower.cs
    │   │   ├── UCTestBlower.resx
    │   │   ├── UCTestBtns.Designer.cs
    │   │   ├── UCTestBtns.cs
    │   │   ├── UCTestBtns.resx
    │   │   ├── UCTestCalendarNotes.Designer.cs
    │   │   ├── UCTestCalendarNotes.cs
    │   │   ├── UCTestCalendarNotes.resx
    │   │   ├── UCTestColors.Designer.cs
    │   │   ├── UCTestColors.cs
    │   │   ├── UCTestColors.resx
    │   │   ├── UCTestConduit.Designer.cs
    │   │   ├── UCTestConduit.cs
    │   │   ├── UCTestConduit.resx
    │   │   ├── UCTestContextMenu.Designer.cs
    │   │   ├── UCTestContextMenu.cs
    │   │   ├── UCTestContextMenu.resx
    │   │   ├── UCTestConveyor.Designer.cs
    │   │   ├── UCTestConveyor.cs
    │   │   ├── UCTestConveyor.resx
    │   │   ├── UCTestDialAisle.Designer.cs
    │   │   ├── UCTestDialAisle.cs
    │   │   ├── UCTestDialAisle.resx
    │   │   ├── UCTestForms.Designer.cs
    │   │   ├── UCTestForms.cs
    │   │   ├── UCTestForms.resx
    │   │   ├── UCTestFunnelChart.Designer.cs
    │   │   ├── UCTestFunnelChart.cs
    │   │   ├── UCTestFunnelChart.resx
    │   │   ├── UCTestGraphicalOverlay.Designer.cs
    │   │   ├── UCTestGraphicalOverlay.cs
    │   │   ├── UCTestGraphicalOverlay.resx
    │   │   ├── UCTestGridTable.Designer.cs
    │   │   ├── UCTestGridTable.cs
    │   │   ├── UCTestGridTable.resx
    │   │   ├── UCTestGridTableCustom.Designer.cs
    │   │   ├── UCTestGridTableCustom.cs
    │   │   ├── UCTestGridTableCustom.resx
    │   │   ├── UCTestGridTable_CustomCell.Designer.cs
    │   │   ├── UCTestGridTable_CustomCell.cs
    │   │   ├── UCTestGridTable_CustomCell.resx
    │   │   ├── UCTestGridTable_CustomCellIcon.Designer.cs
    │   │   ├── UCTestGridTable_CustomCellIcon.cs
    │   │   ├── UCTestGridTable_CustomCellIcon.resx
    │   │   ├── UCTestHorizontalList.Designer.cs
    │   │   ├── UCTestHorizontalList.cs
    │   │   ├── UCTestHorizontalList.resx
    │   │   ├── UCTestIcon.Designer.cs
    │   │   ├── UCTestIcon.cs
    │   │   ├── UCTestIcon.resx
    │   │   ├── UCTestLED.Designer.cs
    │   │   ├── UCTestLED.cs
    │   │   ├── UCTestLED.resx
    │   │   ├── UCTestList.Designer.cs
    │   │   ├── UCTestList.cs
    │   │   ├── UCTestList.resx
    │   │   ├── UCTestListView.Designer.cs
    │   │   ├── UCTestListView.cs
    │   │   ├── UCTestListView.resx
    │   │   ├── UCTestLiveChar_Pie.resx
    │   │   ├── UCTestLiveCharts
    │   │   │   ├── Cartesian
    │   │   │   │   ├── Basic Stacked Bar
    │   │   │   │   │   ├── BasicStackedColumnExample.Designer.cs
    │   │   │   │   │   ├── BasicStackedColumnExample.cs
    │   │   │   │   │   ├── BasicStackedColumnExample.resx
    │   │   │   │   │   ├── BasicsStackedRowExample.Designer.cs
    │   │   │   │   │   ├── BasicsStackedRowExample.cs
    │   │   │   │   │   └── BasicsStackedRowExample.resx
    │   │   │   │   ├── BasicBar
    │   │   │   │   │   ├── BasicColumnExample.Designer.cs
    │   │   │   │   │   ├── BasicColumnExample.cs
    │   │   │   │   │   ├── BasicColumnExample.resx
    │   │   │   │   │   ├── BasicRowExample.Designer.cs
    │   │   │   │   │   ├── BasicRowExample.cs
    │   │   │   │   │   └── BasicRowExample.resx
    │   │   │   │   ├── BasicBubbles
    │   │   │   │   │   ├── BasicBubblesExample.Designer.cs
    │   │   │   │   │   ├── BasicBubblesExample.cs
    │   │   │   │   │   └── BasicBubblesExample.resx
    │   │   │   │   ├── BasicLine
    │   │   │   │   │   ├── BasicLineExample.Designer.cs
    │   │   │   │   │   ├── BasicLineExample.cs
    │   │   │   │   │   └── BasicLineExample.resx
    │   │   │   │   ├── ConstantChanges
    │   │   │   │   │   ├── ConstantChanges.Designer.cs
    │   │   │   │   │   ├── ConstantChanges.cs
    │   │   │   │   │   ├── ConstantChanges.resx
    │   │   │   │   │   └── MeasureModel.cs
    │   │   │   │   ├── Customized Series
    │   │   │   │   │   ├── Customized Line Series.Designer.cs
    │   │   │   │   │   ├── Customized Line Series.cs
    │   │   │   │   │   └── Customized Line Series.resx
    │   │   │   │   ├── DataPagination
    │   │   │   │   │   ├── DataPaginationExample.Designer.cs
    │   │   │   │   │   ├── DataPaginationExample.cs
    │   │   │   │   │   └── DataPaginationExample.resx
    │   │   │   │   ├── DateTime
    │   │   │   │   │   ├── DateTimeExample.Designer.cs
    │   │   │   │   │   ├── DateTimeExample.cs
    │   │   │   │   │   └── DateTimeExample.resx
    │   │   │   │   ├── DynamicVisibility
    │   │   │   │   │   ├── DynamicVisibiltyExample.Designer.cs
    │   │   │   │   │   ├── DynamicVisibiltyExample.cs
    │   │   │   │   │   └── DynamicVisibiltyExample.resx
    │   │   │   │   ├── Events
    │   │   │   │   │   ├── EventsExample.Designer.cs
    │   │   │   │   │   ├── EventsExample.cs
    │   │   │   │   │   └── EventsExample.resx
    │   │   │   │   ├── Financial
    │   │   │   │   │   ├── FinancialExample.Designer.cs
    │   │   │   │   │   ├── FinancialExample.cs
    │   │   │   │   │   └── FinancialExample.resx
    │   │   │   │   ├── FullyResponsive
    │   │   │   │   │   ├── FullyResponsive.Designer.cs
    │   │   │   │   │   ├── FullyResponsive.cs
    │   │   │   │   │   └── FullyResponsive.resx
    │   │   │   │   ├── FunnelChart
    │   │   │   │   │   ├── FunnelExample.Designer.cs
    │   │   │   │   │   ├── FunnelExample.cs
    │   │   │   │   │   ├── FunnelExample.resx
    │   │   │   │   │   └── Resources
    │   │   │   │   │       ├── fingerprint.png
    │   │   │   │   │       ├── user.png
    │   │   │   │   │       └── view.png
    │   │   │   │   ├── GanttChart
    │   │   │   │   │   ├── GanttExample.Designer.cs
    │   │   │   │   │   ├── GanttExample.cs
    │   │   │   │   │   └── GanttExample.resx
    │   │   │   │   ├── HeatSeriesExample
    │   │   │   │   │   ├── HeatSeriesExample.Designer.cs
    │   │   │   │   │   ├── HeatSeriesExample.cs
    │   │   │   │   │   └── HeatSeriesExample.resx
    │   │   │   │   ├── Inverted Series
    │   │   │   │   │   ├── InvertedSeries.Designer.cs
    │   │   │   │   │   ├── InvertedSeries.cs
    │   │   │   │   │   └── InvertedSeries.resx
    │   │   │   │   ├── Irregular Intervals
    │   │   │   │   │   ├── IrregularIntervalsExample.Designer.cs
    │   │   │   │   │   ├── IrregularIntervalsExample.cs
    │   │   │   │   │   └── IrregularIntervalsExample.resx
    │   │   │   │   ├── Labels
    │   │   │   │   │   ├── Labels.Designer.cs
    │   │   │   │   │   ├── Labels.cs
    │   │   │   │   │   └── Labels.resx
    │   │   │   │   ├── Linq
    │   │   │   │   │   ├── City.cs
    │   │   │   │   │   ├── DataBase.cs
    │   │   │   │   │   ├── LinqExample.Designer.cs
    │   │   │   │   │   ├── LinqExample.cs
    │   │   │   │   │   ├── LinqExample.resx
    │   │   │   │   │   └── cities.csv
    │   │   │   │   ├── LogarithmScale
    │   │   │   │   │   ├── LogarithmSacale.Designer.cs
    │   │   │   │   │   ├── LogarithmSacale.cs
    │   │   │   │   │   └── LogarithmSacale.resx
    │   │   │   │   ├── MissingPoints
    │   │   │   │   │   ├── MissingPoint.Designer.cs
    │   │   │   │   │   ├── MissingPoint.cs
    │   │   │   │   │   └── MissingPoint.resx
    │   │   │   │   ├── MultiAxes
    │   │   │   │   │   ├── MultipleAxesExample.Designer.cs
    │   │   │   │   │   ├── MultipleAxesExample.cs
    │   │   │   │   │   └── MultipleAxesExample.resx
    │   │   │   │   ├── NegativeStackedRow
    │   │   │   │   │   ├── NegativeStackedRow.Designer.cs
    │   │   │   │   │   ├── NegativeStackedRow.cs
    │   │   │   │   │   └── NegativeStackedRow.resx
    │   │   │   │   ├── PointState
    │   │   │   │   │   ├── PointState.Designer.cs
    │   │   │   │   │   ├── PointState.cs
    │   │   │   │   │   └── PointState.resx
    │   │   │   │   ├── ScatterExample
    │   │   │   │   │   ├── ScatterForm.Designer.cs
    │   │   │   │   │   ├── ScatterForm.cs
    │   │   │   │   │   └── ScatterForm.resx
    │   │   │   │   ├── Sections
    │   │   │   │   │   ├── SectionsExample.Designer.cs
    │   │   │   │   │   ├── SectionsExample.cs
    │   │   │   │   │   └── SectionsExample.resx
    │   │   │   │   ├── StackedArea
    │   │   │   │   │   ├── StackedAreaExample.Designer.cs
    │   │   │   │   │   ├── StackedAreaExample.cs
    │   │   │   │   │   └── StackedAreaExample.resx
    │   │   │   │   ├── StepLine
    │   │   │   │   │   ├── StepLineExample.Designer.cs
    │   │   │   │   │   ├── StepLineExample.cs
    │   │   │   │   │   └── StepLineExample.resx
    │   │   │   │   ├── UielementsExample
    │   │   │   │   │   ├── UielementsExample.Designer.cs
    │   │   │   │   │   ├── UielementsExample.cs
    │   │   │   │   │   ├── UielementsExample.resx
    │   │   │   │   │   └── warning.png
    │   │   │   │   └── Zooming and Panning
    │   │   │   │       ├── ZomingAndPanningExample.Designer.cs
    │   │   │   │       ├── ZomingAndPanningExample.cs
    │   │   │   │       └── ZomingAndPanningExample.resx
    │   │   │   ├── Gauge
    │   │   │   │   ├── 360
    │   │   │   │   │   ├── Gauge360Example.Designer.cs
    │   │   │   │   │   ├── Gauge360Example.cs
    │   │   │   │   │   └── Gauge360Example.resx
    │   │   │   │   └── AngularGauge
    │   │   │   │       ├── AngularGugeForm.Designer.cs
    │   │   │   │       ├── AngularGugeForm.cs
    │   │   │   │       └── AngularGugeForm.resx
    │   │   │   ├── Maps
    │   │   │   │   ├── GeoMapExample.Designer.cs
    │   │   │   │   ├── GeoMapExample.cs
    │   │   │   │   ├── GeoMapExample.resx
    │   │   │   │   └── World.xml
    │   │   │   └── PieChart
    │   │   │       ├── DoughnutExample.Designer.cs
    │   │   │       ├── DoughnutExample.cs
    │   │   │       ├── DoughnutExample.resx
    │   │   │       ├── PieChartExample.Designer.cs
    │   │   │       ├── PieChartExample.cs
    │   │   │       └── PieChartExample.resx
    │   │   ├── UCTestLiveCharts.Designer.cs
    │   │   ├── UCTestLiveCharts.cs
    │   │   ├── UCTestLiveCharts.resx
    │   │   ├── UCTestMenu.Designer.cs
    │   │   ├── UCTestMenu.cs
    │   │   ├── UCTestMenu.resx
    │   │   ├── UCTestMeter.Designer.cs
    │   │   ├── UCTestMeter.cs
    │   │   ├── UCTestMeter.resx
    │   │   ├── UCTestMindMapping.Designer.cs
    │   │   ├── UCTestMindMapping.cs
    │   │   ├── UCTestMindMapping.resx
    │   │   ├── UCTestNavigation.Designer.cs
    │   │   ├── UCTestNavigation.cs
    │   │   ├── UCTestNavigation.resx
    │   │   ├── UCTestNavigationMenu.Designer.cs
    │   │   ├── UCTestNavigationMenu.cs
    │   │   ├── UCTestNavigationMenu.resx
    │   │   ├── UCTestNavigationMenuExt.Designer.cs
    │   │   ├── UCTestNavigationMenuExt.cs
    │   │   ├── UCTestNavigationMenuExt.resx
    │   │   ├── UCTestNavigationMenuOffice.Designer.cs
    │   │   ├── UCTestNavigationMenuOffice.cs
    │   │   ├── UCTestNavigationMenuOffice.resx
    │   │   ├── UCTestNavigationMenuOfficeItem.Designer.cs
    │   │   ├── UCTestNavigationMenuOfficeItem.cs
    │   │   ├── UCTestNavigationMenuOfficeItem.resx
    │   │   ├── UCTestPage.Designer.cs
    │   │   ├── UCTestPage.cs
    │   │   ├── UCTestPage.resx
    │   │   ├── UCTestPanelQuote.Designer.cs
    │   │   ├── UCTestPanelQuote.cs
    │   │   ├── UCTestPanelQuote.resx
    │   │   ├── UCTestPanelTitle.Designer.cs
    │   │   ├── UCTestPanelTitle.cs
    │   │   ├── UCTestPanelTitle.resx
    │   │   ├── UCTestProcess.Designer.cs
    │   │   ├── UCTestProcess.cs
    │   │   ├── UCTestProcess.resx
    │   │   ├── UCTestRadarChart.Designer.cs
    │   │   ├── UCTestRadarChart.cs
    │   │   ├── UCTestRadarChart.resx
    │   │   ├── UCTestRollText.Designer.cs
    │   │   ├── UCTestRollText.cs
    │   │   ├── UCTestRollText.resx
    │   │   ├── UCTestRotor.Designer.cs
    │   │   ├── UCTestRotor.cs
    │   │   ├── UCTestRotor.resx
    │   │   ├── UCTestSampling.Designer.cs
    │   │   ├── UCTestSampling.cs
    │   │   ├── UCTestSampling.resx
    │   │   ├── UCTestScrollbar.Designer.cs
    │   │   ├── UCTestScrollbar.cs
    │   │   ├── UCTestScrollbar.resx
    │   │   ├── UCTestShadow.Designer.cs
    │   │   ├── UCTestShadow.cs
    │   │   ├── UCTestShadow.resx
    │   │   ├── UCTestSignalLamp.Designer.cs
    │   │   ├── UCTestSignalLamp.cs
    │   │   ├── UCTestSignalLamp.resx
    │   │   ├── UCTestSplitLabel.Designer.cs
    │   │   ├── UCTestSplitLabel.cs
    │   │   ├── UCTestSplitLabel.resx
    │   │   ├── UCTestStep.Designer.cs
    │   │   ├── UCTestStep.cs
    │   │   ├── UCTestStep.resx
    │   │   ├── UCTestSyringe.Designer.cs
    │   │   ├── UCTestSyringe.cs
    │   │   ├── UCTestSyringe.resx
    │   │   ├── UCTestTab.Designer.cs
    │   │   ├── UCTestTab.cs
    │   │   ├── UCTestTab.resx
    │   │   ├── UCTestThermometer.Designer.cs
    │   │   ├── UCTestThermometer.cs
    │   │   ├── UCTestThermometer.resx
    │   │   ├── UCTestTimeLine.Designer.cs
    │   │   ├── UCTestTimeLine.cs
    │   │   ├── UCTestTimeLine.resx
    │   │   ├── UCTestTips.Designer.cs
    │   │   ├── UCTestTips.cs
    │   │   ├── UCTestTips.resx
    │   │   ├── UCTestTrackbar.Designer.cs
    │   │   ├── UCTestTrackbar.cs
    │   │   ├── UCTestTrackbar.resx
    │   │   ├── UCTestTransfer.Designer.cs
    │   │   ├── UCTestTransfer.cs
    │   │   ├── UCTestTransfer.resx
    │   │   ├── UCTestTreeGridTable.Designer.cs
    │   │   ├── UCTestTreeGridTable.cs
    │   │   ├── UCTestTreeGridTable.resx
    │   │   ├── UCTestTreeview.Designer.cs
    │   │   ├── UCTestTreeview.cs
    │   │   ├── UCTestTreeview.resx
    │   │   ├── UCTestTurntable.Designer.cs
    │   │   ├── UCTestTurntable.cs
    │   │   ├── UCTestTurntable.resx
    │   │   ├── UCTestUCEllipseDialAisle.Designer.cs
    │   │   ├── UCTestUCEllipseDialAisle.cs
    │   │   ├── UCTestUCEllipseDialAisle.resx
    │   │   ├── UCTestValve.Designer.cs
    │   │   ├── UCTestValve.cs
    │   │   ├── UCTestValve.resx
    │   │   ├── UCTestVerification.Designer.cs
    │   │   ├── UCTestVerification.cs
    │   │   ├── UCTestVerification.resx
    │   │   ├── UCTestWave.Designer.cs
    │   │   ├── UCTestWave.cs
    │   │   ├── UCTestWave.resx
    │   │   ├── UCTestWaveChart.Designer.cs
    │   │   ├── UCTestWaveChart.cs
    │   │   └── UCTestWaveChart.resx
    │   ├── UCShouQuan.Designer.cs
    │   ├── UCShouQuan.cs
    │   ├── UCShouQuan.resx
    │   ├── bin
    │   │   ├── Debug
    │   │   │   ├── HandInput
    │   │   │   │   └── HiData
    │   │   │   │       └── hidata.dat
    │   │   │   ├── IconFont
    │   │   │   │   ├── ElegantIcons.ttf
    │   │   │   │   └── FontAwesome.ttf
    │   │   │   └── UC
    │   │   │       └── UCTestLiveCharts
    │   │   │           ├── Cartesian
    │   │   │           │   └── Linq
    │   │   │           └── Maps
    │   │   ├── Release
    │   │   └── x86
    │   │       └── Debug
    │   ├── log.ico
    │   ├── logo.ico
    │   ├── obj
    │   │   ├── Debug
    │   │   │   ├── DesignTimeResolveAssemblyReferences.cache
    │   │   │   ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │   │   ├── TempPE
    │   │   │   │   └── Properties.Resources.Designer.cs.dll
    │   │   │   ├── Test.FrmOKCancel1Test.resources
    │   │   │   ├── Test.FrmOKCancel2Test.resources
    │   │   │   ├── Test.FrmTestFrmBack.resources
    │   │   │   ├── Test.FrmTestLoading.resources
    │   │   │   ├── Test.FrmWithTitleTest.resources
    │   │   │   ├── Test.KH.AngularGugeForm.resources
    │   │   │   ├── Test.KH.BasicBubblesExample.resources
    │   │   │   ├── Test.KH.BasicColumnExample.resources
    │   │   │   ├── Test.KH.BasicLineExample.resources
    │   │   │   ├── Test.KH.BasicRowExample.resources
    │   │   │   ├── Test.KH.BasicStackedColumnExample.resources
    │   │   │   ├── Test.KH.BasicsStackedRowExample.resources
    │   │   │   ├── Test.KH.ConstantChanges.resources
    │   │   │   ├── Test.KH.CustomizedSeries.resources
    │   │   │   ├── Test.KH.DataPaginationExample.resources
    │   │   │   ├── Test.KH.DateModel.resources
    │   │   │   ├── Test.KH.DoughnutExample.resources
    │   │   │   ├── Test.KH.DynamicVisibiltyExample.resources
    │   │   │   ├── Test.KH.EventsExample.resources
    │   │   │   ├── Test.KH.FinancialExample.resources
    │   │   │   ├── Test.KH.FullyResponsive.resources
    │   │   │   ├── Test.KH.FunnelExample.resources
    │   │   │   ├── Test.KH.GanttExample.resources
    │   │   │   ├── Test.KH.Gauge360Example.resources
    │   │   │   ├── Test.KH.GeoMapExample.resources
    │   │   │   ├── Test.KH.HeatSeriesExample.resources
    │   │   │   ├── Test.KH.InvertedSeries.resources
    │   │   │   ├── Test.KH.IrregularIntervalsExample.resources
    │   │   │   ├── Test.KH.KHTestArrow.resources
    │   │   │   ├── Test.KH.KHTestBlower.resources
    │   │   │   ├── Test.KH.KHTestBtns.resources
    │   │   │   ├── Test.KH.KHTestCalendarNotes.resources
    │   │   │   ├── Test.KH.KHTestColors.resources
    │   │   │   ├── Test.KH.KHTestConduit.resources
    │   │   │   ├── Test.KH.KHTestContextMenu.resources
    │   │   │   ├── Test.KH.KHTestConveyor.resources
    │   │   │   ├── Test.KH.KHTestDialAisle.resources
    │   │   │   ├── Test.KH.KHTestForms.resources
    │   │   │   ├── Test.KH.KHTestFunnelChart.resources
    │   │   │   ├── Test.KH.KHTestGraphicalOverlay.resources
    │   │   │   ├── Test.KH.KHTestGridTable.resources
    │   │   │   ├── Test.KH.KHTestGridTableCustom.resources
    │   │   │   ├── Test.KH.KHTestGridTable_CustomCell.resources
    │   │   │   ├── Test.KH.KHTestGridTable_CustomCellIcon.resources
    │   │   │   ├── Test.KH.KHTestHorizontalList.resources
    │   │   │   ├── Test.KH.KHTestIcon.resources
    │   │   │   ├── Test.KH.KHTestLED.resources
    │   │   │   ├── Test.KH.KHTestList.resources
    │   │   │   ├── Test.KH.KHTestListView.resources
    │   │   │   ├── Test.KH.KHTestLiveCharts.resources
    │   │   │   ├── Test.KH.KHTestMenu.resources
    │   │   │   ├── Test.KH.KHTestMeter.resources
    │   │   │   ├── Test.KH.KHTestMindMapping.resources
    │   │   │   ├── Test.KH.KHTestNavigation.resources
    │   │   │   ├── Test.KH.KHTestNavigationMenuOfficeItem.resources
    │   │   │   ├── Test.KH.Labels.resources
    │   │   │   ├── Test.KH.LinqExample.resources
    │   │   │   ├── Test.KH.LogarithmSacale.resources
    │   │   │   ├── Test.KH.MissingPoint.resources
    │   │   │   ├── Test.KH.MultipleAxesExample.resources
    │   │   │   ├── Test.KH.NegativeStackedRow.resources
    │   │   │   ├── Test.KH.PieChartExample.resources
    │   │   │   ├── Test.KH.PointState.resources
    │   │   │   ├── Test.KH.ScatterForm.resources
    │   │   │   ├── Test.KH.SectionsExample.resources
    │   │   │   ├── Test.KH.StackedAreaExample.resources
    │   │   │   ├── Test.KH.StepLineExample.resources
    │   │   │   ├── Test.KH.UielementsExample.resources
    │   │   │   ├── Test.KH.ZomingAndPanningExample.resources
    │   │   │   ├── Test.KHShouQuan.resources
    │   │   │   ├── Test.Properties.Resources.resources
    │   │   │   ├── Test.csproj.CoreCompileInputs.cache
    │   │   │   ├── Test.csproj.FileListAbsolute.txt
    │   │   │   └── Test.csprojAssemblyReference.cache
    │   │   └── x86
    │   │       └── Debug
    │   │           ├── DesignTimeResolveAssemblyReferences.cache
    │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │   │           ├── TempPE
    │   │           │   └── Properties.Resources.Designer.cs.dll
    │   │           ├── Test.FrmOKCancel1Test.resources
    │   │           ├── Test.FrmOKCancel2Test.resources
    │   │           ├── Test.FrmTestFrmBack.resources
    │   │           ├── Test.FrmTestLoading.resources
    │   │           ├── Test.FrmWithTitleTest.resources
    │   │           ├── Test.KH.AngularGugeForm.resources
    │   │           ├── Test.KH.BasicBubblesExample.resources
    │   │           ├── Test.KH.BasicColumnExample.resources
    │   │           ├── Test.KH.BasicLineExample.resources
    │   │           ├── Test.KH.BasicRowExample.resources
    │   │           ├── Test.KH.BasicStackedColumnExample.resources
    │   │           ├── Test.KH.BasicsStackedRowExample.resources
    │   │           ├── Test.KH.ConstantChanges.resources
    │   │           ├── Test.KH.CustomizedSeries.resources
    │   │           ├── Test.KH.DataPaginationExample.resources
    │   │           ├── Test.KH.DateModel.resources
    │   │           ├── Test.KH.DoughnutExample.resources
    │   │           ├── Test.KH.DynamicVisibiltyExample.resources
    │   │           ├── Test.KH.EventsExample.resources
    │   │           ├── Test.KH.FinancialExample.resources
    │   │           ├── Test.KH.FullyResponsive.resources
    │   │           ├── Test.KH.FunnelExample.resources
    │   │           ├── Test.KH.GanttExample.resources
    │   │           ├── Test.KH.Gauge360Example.resources
    │   │           ├── Test.KH.GeoMapExample.resources
    │   │           ├── Test.KH.HeatSeriesExample.resources
    │   │           ├── Test.KH.InvertedSeries.resources
    │   │           ├── Test.KH.IrregularIntervalsExample.resources
    │   │           ├── Test.KH.KHTestArrow.resources
    │   │           ├── Test.KH.KHTestBlower.resources
    │   │           ├── Test.KH.KHTestBtns.resources
    │   │           ├── Test.KH.KHTestCalendarNotes.resources
    │   │           ├── Test.KH.KHTestColors.resources
    │   │           ├── Test.KH.KHTestConduit.resources
    │   │           ├── Test.KH.KHTestContextMenu.resources
    │   │           ├── Test.KH.KHTestConveyor.resources
    │   │           ├── Test.KH.KHTestDialAisle.resources
    │   │           ├── Test.KH.KHTestForms.resources
    │   │           ├── Test.KH.KHTestFunnelChart.resources
    │   │           ├── Test.KH.KHTestGraphicalOverlay.resources
    │   │           ├── Test.KH.KHTestGridTable.resources
    │   │           ├── Test.KH.KHTestGridTableCustom.resources
    │   │           ├── Test.KH.KHTestGridTable_CustomCell.resources
    │   │           ├── Test.KH.KHTestGridTable_CustomCellIcon.resources
    │   │           ├── Test.KH.KHTestHorizontalList.resources
    │   │           ├── Test.KH.KHTestIcon.resources
    │   │           ├── Test.KH.KHTestLED.resources
    │   │           ├── Test.KH.KHTestList.resources
    │   │           ├── Test.KH.KHTestListView.resources
    │   │           ├── Test.KH.KHTestLiveCharts.resources
    │   │           ├── Test.KH.KHTestMenu.resources
    │   │           ├── Test.KH.KHTestMeter.resources
    │   │           ├── Test.KH.KHTestMindMapping.resources
    │   │           ├── Test.KH.KHTestNavigation.resources
    │   │           ├── Test.KH.KHTestNavigationMenuOfficeItem.resources
    │   │           ├── Test.KH.Labels.resources
    │   │           ├── Test.KH.LinqExample.resources
    │   │           ├── Test.KH.LogarithmSacale.resources
    │   │           ├── Test.KH.MissingPoint.resources
    │   │           ├── Test.KH.MultipleAxesExample.resources
    │   │           ├── Test.KH.NegativeStackedRow.resources
    │   │           ├── Test.KH.PieChartExample.resources
    │   │           ├── Test.KH.PointState.resources
    │   │           ├── Test.KH.ScatterForm.resources
    │   │           ├── Test.KH.SectionsExample.resources
    │   │           ├── Test.KH.StackedAreaExample.resources
    │   │           ├── Test.KH.StepLineExample.resources
    │   │           ├── Test.KH.UielementsExample.resources
    │   │           ├── Test.KH.ZomingAndPanningExample.resources
    │   │           ├── Test.KHShouQuan.resources
    │   │           ├── Test.Properties.Resources.resources
    │   │           ├── Test.csproj.CoreCompileInputs.cache
    │   │           ├── Test.csproj.FileListAbsolute.txt
    │   │           ├── Test.csprojAssemblyReference.cache
    │   │           └── build.force
    │   └── packages.config
    ├── TestFormsApp
    │   ├── App.config
    │   ├── Form1.Designer.cs
    │   ├── Form1.cs
    │   ├── Form1.resx
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── TestFormsApp.csproj
    │   ├── TestFormsApp.csproj.user
    │   ├── bin
    │   │   ├── Debug
    │   │   │   ├── KH_Controls.dll
    │   │   │   ├── KH_Controls.pdb
    │   │   │   ├── TestFormsApp.exe
    │   │   │   ├── TestFormsApp.exe.config
    │   │   │   ├── TestFormsApp.pdb
    │   │   │   └── lib
    │   │   │       ├── HandInput.dll
    │   │   │       ├── HandInput64.dll
    │   │   │       ├── certificate
    │   │   │       ├── certificate64
    │   │   │       ├── handinput.cupf
    │   │   │       ├── handinput.exe
    │   │   │       ├── handinput.ini
    │   │   │       ├── icon.png
    │   │   │       ├── lm_HW_PB_7000_kn.arpa.7e9.prune.1e-7.lm.fixed
    │   │   │       ├── overlapEngine.dll
    │   │   │       ├── sgim_annex.bin
    │   │   │       ├── sgim_hz.bin
    │   │   │       ├── sgim_py.bin
    │   │   │       └── singleEngine.dll
    │   │   ├── Release
    │   │   └── x86
    │   │       └── Debug
    │   │           ├── KH_Controls.dll
    │   │           ├── KH_Controls.pdb
    │   │           ├── TestFormsApp.exe
    │   │           ├── TestFormsApp.exe.config
    │   │           ├── TestFormsApp.pdb
    │   │           └── lib
    │   │               ├── HandInput.dll
    │   │               ├── HandInput64.dll
    │   │               ├── certificate
    │   │               ├── certificate64
    │   │               ├── handinput.cupf
    │   │               ├── handinput.exe
    │   │               ├── handinput.ini
    │   │               ├── icon.png
    │   │               ├── lm_HW_PB_7000_kn.arpa.7e9.prune.1e-7.lm.fixed
    │   │               ├── overlapEngine.dll
    │   │               ├── sgim_annex.bin
    │   │               ├── sgim_hz.bin
    │   │               ├── sgim_py.bin
    │   │               └── singleEngine.dll
    │   ├── lib
    │   │   ├── HandInput.dll
    │   │   ├── HandInput64.dll
    │   │   ├── certificate
    │   │   ├── certificate64
    │   │   ├── handinput.cupf
    │   │   ├── handinput.exe
    │   │   ├── handinput.ini
    │   │   ├── icon.png
    │   │   ├── lm_HW_PB_7000_kn.arpa.7e9.prune.1e-7.lm.fixed
    │   │   ├── overlapEngine.dll
    │   │   ├── sgim_annex.bin
    │   │   ├── sgim_hz.bin
    │   │   ├── sgim_py.bin
    │   │   └── singleEngine.dll
    │   └── obj
    │       ├── Debug
    │       │   ├── DesignTimeResolveAssemblyReferences.cache
    │       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       │   ├── TempPE
    │       │   ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
    │       │   ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
    │       │   ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
    │       │   ├── TestFormsApp.Form1.resources
    │       │   ├── TestFormsApp.Properties.Resources.resources
    │       │   ├── TestFormsApp.csproj.CopyComplete
    │       │   ├── TestFormsApp.csproj.CoreCompileInputs.cache
    │       │   ├── TestFormsApp.csproj.FileListAbsolute.txt
    │       │   ├── TestFormsApp.csproj.GenerateResource.cache
    │       │   ├── TestFormsApp.exe
    │       │   └── TestFormsApp.pdb
    │       └── x86
    │           └── Debug
    │               ├── DesignTimeResolveAssemblyReferences.cache
    │               ├── DesignTimeResolveAssemblyReferencesInput.cache
    │               ├── TempPE
    │               ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
    │               ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
    │               ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
    │               ├── TestFormsApp.Form1.resources
    │               ├── TestFormsApp.Properties.Resources.resources
    │               ├── TestFormsApp.csproj.CopyComplete
    │               ├── TestFormsApp.csproj.CoreCompileInputs.cache
    │               ├── TestFormsApp.csproj.FileListAbsolute.txt
    │               ├── TestFormsApp.csproj.GenerateResource.cache
    │               ├── TestFormsApp.csprojAssemblyReference.cache
    │               ├── TestFormsApp.exe
    │               └── TestFormsApp.pdb
    ├── WindowsFormsAppTest
    │   ├── App.config
    │   ├── Form1.Designer.cs
    │   ├── Form1.cs
    │   ├── Form1.resx
    │   ├── Program.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── WindowsFormsAppTest.csproj
    │   ├── WindowsFormsAppTest.csproj.user
    │   ├── bin
    │   │   ├── Debug
    │   │   │   ├── HandInput
    │   │   │   │   ├── HandInput.dll
    │   │   │   │   ├── HandInput64.dll
    │   │   │   │   ├── HiData
    │   │   │   │   │   └── hidata.dat
    │   │   │   │   ├── certificate
    │   │   │   │   ├── certificate64
    │   │   │   │   ├── handinput.cupf
    │   │   │   │   ├── handinput.exe
    │   │   │   │   ├── handinput.ini
    │   │   │   │   ├── icon.png
    │   │   │   │   ├── lm_HW_PB_7000_kn.arpa.7e9.prune.1e-7.lm.fixed
    │   │   │   │   ├── overlapEngine.dll
    │   │   │   │   ├── sgim_annex.bin
    │   │   │   │   ├── sgim_hz.bin
    │   │   │   │   ├── sgim_py.bin
    │   │   │   │   └── singleEngine.dll
    │   │   │   ├── KH_Controls.dll
    │   │   │   ├── KH_Controls.dll.config
    │   │   │   ├── KH_Controls.pdb
    │   │   │   ├── WindowsFormsAppTest.exe
    │   │   │   ├── WindowsFormsAppTest.exe.config
    │   │   │   └── WindowsFormsAppTest.pdb
    │   │   └── Release
    │   └── obj
    │       └── Debug
    │           ├── DesignTimeResolveAssemblyReferences.cache
    │           ├── DesignTimeResolveAssemblyReferencesInput.cache
    │           ├── TempPE
    │           ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
    │           ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
    │           ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
    │           ├── WindowsFormsAppTest.Form1.resources
    │           ├── WindowsFormsAppTest.Properties.Resources.resources
    │           ├── WindowsFormsAppTest.csproj.CopyComplete
    │           ├── WindowsFormsAppTest.csproj.CoreCompileInputs.cache
    │           ├── WindowsFormsAppTest.csproj.FileListAbsolute.txt
    │           ├── WindowsFormsAppTest.csproj.GenerateResource.cache
    │           ├── WindowsFormsAppTest.csprojAssemblyReference.cache
    │           ├── WindowsFormsAppTest.exe
    │           └── WindowsFormsAppTest.pdb
    └── packages
        ├── LiveCharts.0.9.7
        │   ├── LiveCharts.0.9.7.nupkg
        │   ├── lib
        │   │   ├── net40
        │   │   │   ├── LiveCharts.dll
        │   │   │   ├── LiveCharts.pdb
        │   │   │   └── LiveCharts.xml
        │   │   ├── net45
        │   │   │   ├── LiveCharts.dll
        │   │   │   ├── LiveCharts.pdb
        │   │   │   └── LiveCharts.xml
        │   │   └── portable-net45 win8 wp8
        │   │       ├── LiveCharts.XML
        │   │       ├── LiveCharts.dll
        │   │       └── LiveCharts.pdb
        │   └── readme.txt
        ├── LiveCharts.WinForms.0.9.7.1
        │   ├── LiveCharts.WinForms.0.9.7.1.nupkg
        │   ├── lib
        │   │   ├── net40
        │   │   │   ├── LiveCharts.WinForms.XML
        │   │   │   ├── LiveCharts.WinForms.dll
        │   │   │   └── LiveCharts.WinForms.pdb
        │   │   └── net45
        │   │       ├── LiveCharts.WinForms.XML
        │   │       ├── LiveCharts.WinForms.dll
        │   │       └── LiveCharts.WinForms.pdb
        │   └── tools
        │       └── install.ps1
        ├── LiveCharts.Wpf.0.9.7
        │   ├── LiveCharts.Wpf.0.9.7.nupkg
        │   ├── lib
        │   │   ├── net40
        │   │   │   ├── LiveCharts.Wpf.XML
        │   │   │   ├── LiveCharts.Wpf.dll
        │   │   │   └── LiveCharts.Wpf.pdb
        │   │   └── net45
        │   │       ├── LiveCharts.Wpf.XML
        │   │       ├── LiveCharts.Wpf.dll
        │   │       └── LiveCharts.Wpf.pdb
        │   └── tools
        │       └── install.ps1
        └── repositories.config

181 directories, 1197 files


标签: 输入 手写 控件

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警