在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例桌面应用界面/GUI → HZHControls: 高性能触控支持C# WinForm自定义控件

HZHControls: 高性能触控支持C# WinForm自定义控件

桌面应用界面/GUI

下载此实例
  • 开发语言:C#
  • 实例大小:11.41M
  • 下载次数:18
  • 浏览次数:163
  • 发布时间:2024-03-25
  • 实例类别:桌面应用界面/GUI
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】
HZHControls是一个专为WinForm应用设计的自定义控件库,它基于.NET Framework 4.0进行开发,旨在为触摸屏设备提供更优秀的用户交互体验。该项目完全采用原生控件开发方式,没有使用任何第三方控件,因此在您的项目中可以安全使用。
本控件库包括但不限于以下功能特性:
// 提示窗口示例
if (FrmDialog.ShowDialog(this, "是否显示无取消按钮的提示框?", "模态窗口测试", true) == System.Windows.Forms.DialogResult.OK)
{
    FrmDialog.ShowDialog(this, "这是一个无取消按钮的提示框", "模态窗口测试");
}

// 多输入表单示例
FrmInputs frm = new FrmInputs("动态多输入表单测试",
    new string[] { "姓名", "电话", "身份证号", "地址" },
    new Dictionary<string, HZH_Controls.TextInputType>() { { "电话", HZH_Controls.TextInputType.Regex }, { "身份证号", HZH_Controls.TextInputType.Regex } },
    new Dictionary<string, string>() { { "电话", "^1\d{10}$" }, { "身份证号", "^\d{18}$" } },
    new Dictionary<string, KeyBoardType>() { { "电话", KeyBoardType.UCKeyBorderNum }, { "身份证号", KeyBoardType.UCKeyBorderNum } },
    new List<string>() { "姓名", "电话", "身份证号" });
frm.ShowDialog(this);

除了上述示例外,HZHControls还提供了丰富的控件和功能,如数据绑定、分页控制、提示窗口、导航菜单等,适合各种WinForm应用场景。

【实例截图】

from clipboard


from clipboard


from clipboard


from clipboard


from clipboard


from clipboard


from clipboard


from clipboard


from clipboard


from clipboard

【核心代码】
文件清单
└── NetWinformControl-7749b50299b1afa29707b1b37a8ffc7c621f1b7d
    ├── HZH_Controls
    │   ├── HZH_Controls
    │   │   ├── buidnuget.bat
    │   │   ├── Colors
    │   │   │   ├── BasisColors.cs
    │   │   │   ├── BorderColors.cs
    │   │   │   ├── ColorEnums.cs
    │   │   │   ├── ColorExt.cs
    │   │   │   ├── GradientColors.cs
    │   │   │   ├── LineColors.cs
    │   │   │   ├── StatusColors.cs
    │   │   │   ├── TableColors.cs
    │   │   │   └── TextColors.cs
    │   │   ├── Controls
    │   │   │   ├── Btn
    │   │   │   │   ├── UCBtnExt.cs
    │   │   │   │   ├── UCBtnExt.Designer.cs
    │   │   │   │   ├── UCBtnExt.resx
    │   │   │   │   ├── UCBtnFillet.cs
    │   │   │   │   ├── UCBtnFillet.Designer.cs
    │   │   │   │   ├── UCBtnFillet.resx
    │   │   │   │   ├── UCBtnImg.cs
    │   │   │   │   ├── UCBtnImg.Designer.cs
    │   │   │   │   ├── UCBtnImg.resx
    │   │   │   │   ├── UCDropDownBtn.cs
    │   │   │   │   ├── UCDropDownBtn.Designer.cs
    │   │   │   │   └── UCDropDownBtn.resx
    │   │   │   ├── BtnsGroup
    │   │   │   │   ├── UCBtnsGroup.cs
    │   │   │   │   ├── UCBtnsGroup.Designer.cs
    │   │   │   │   └── UCBtnsGroup.resx
    │   │   │   ├── Charts
    │   │   │   │   ├── AuxiliaryLable.cs
    │   │   │   │   ├── AuxiliaryLine.cs
    │   │   │   │   ├── FunnelChart
    │   │   │   │   │   ├── FunelChartAlignment.cs
    │   │   │   │   │   ├── FunelChartDirection.cs
    │   │   │   │   │   ├── FunelChartItem.cs
    │   │   │   │   │   └── UCFunnelChart.cs
    │   │   │   │   ├── MarkText.cs
    │   │   │   │   ├── MarkTextPositionStyle.cs
    │   │   │   │   ├── RadarChart
    │   │   │   │   │   ├── RadarLine.cs
    │   │   │   │   │   ├── RadarPosition.cs
    │   │   │   │   │   └── UCRadarChart.cs
    │   │   │   │   └── ZoomType.cs
    │   │   │   ├── Checkbox
    │   │   │   │   ├── UCCheckBox.cs
    │   │   │   │   ├── UCCheckBox.Designer.cs
    │   │   │   │   └── UCCheckBox.resx
    │   │   │   ├── ComboBox
    │   │   │   │   ├── UCCombox.cs
    │   │   │   │   ├── UCCombox.Designer.cs
    │   │   │   │   ├── UCComboxGrid.cs
    │   │   │   │   ├── UCComboxGrid.Designer.cs
    │   │   │   │   ├── UCComboxGridPanel.cs
    │   │   │   │   ├── UCComboxGridPanel.Designer.cs
    │   │   │   │   ├── UCComboxGridPanel.resx
    │   │   │   │   ├── UCComboxGrid.resx
    │   │   │   │   └── UCCombox.resx
    │   │   │   ├── DataGridView
    │   │   │   │   ├── DataGridViewCellEntity.cs
    │   │   │   │   ├── DataGridViewCellEventArgs.cs
    │   │   │   │   ├── DataGridViewCellEventHandler.cs
    │   │   │   │   ├── DataGridViewColumnEntity.cs
    │   │   │   │   ├── DataGridViewRowCustomEventArgs.cs
    │   │   │   │   ├── IDataGridViewCustomCell.cs
    │   │   │   │   ├── IDataGridViewRow.cs
    │   │   │   │   ├── UCDataGridView.cs
    │   │   │   │   ├── UCDataGridView.Designer.cs
    │   │   │   │   ├── UCDataGridView.resx
    │   │   │   │   ├── UCDataGridViewRow.cs
    │   │   │   │   ├── UCDataGridViewRow.Designer.cs
    │   │   │   │   ├── UCDataGridViewRow.resx
    │   │   │   │   ├── UCDataGridViewTreeRow.cs
    │   │   │   │   ├── UCDataGridViewTreeRow.Designer.cs
    │   │   │   │   └── UCDataGridViewTreeRow.resx
    │   │   │   ├── DateTime
    │   │   │   │   ├── DateTimePickerType.cs
    │   │   │   │   ├── UCCalendarNotes.cs
    │   │   │   │   ├── UCCalendarNotes.Designer.cs
    │   │   │   │   ├── UCCalendarNotes.resx
    │   │   │   │   ├── UCCalendarNotes_Week.cs
    │   │   │   │   ├── UCCalendarNotes_Week.Designer.cs
    │   │   │   │   ├── UCCalendarNotes_Week.resx
    │   │   │   │   ├── UCDatePickerExt2.cs
    │   │   │   │   ├── UCDatePickerExt2.Designer.cs
    │   │   │   │   ├── UCDatePickerExt2.resx
    │   │   │   │   ├── UCDatePickerExt.cs
    │   │   │   │   ├── UCDatePickerExt.Designer.cs
    │   │   │   │   ├── UCDatePickerExt.resx
    │   │   │   │   ├── UCDateTimeSelectPan2.cs
    │   │   │   │   ├── UCDateTimeSelectPan2.Designer.cs
    │   │   │   │   ├── UCDateTimeSelectPan2.resx
    │   │   │   │   ├── UCDateTimeSelectPan.cs
    │   │   │   │   ├── UCDateTimeSelectPan.Designer.cs
    │   │   │   │   ├── UCDateTimeSelectPan.resx
    │   │   │   │   ├── UCTimePanel.cs
    │   │   │   │   ├── UCTimePanel.Designer.cs
    │   │   │   │   └── UCTimePanel.resx
    │   │   │   ├── FactoryControls
    │   │   │   │   ├── Arrow
    │   │   │   │   │   └── UCArrow.cs
    │   │   │   │   ├── Blower
    │   │   │   │   │   ├── UCBlower.cs
    │   │   │   │   │   └── UCBlower.resx
    │   │   │   │   ├── Bottle
    │   │   │   │   │   └── UCBottle.cs
    │   │   │   │   ├── Conduit
    │   │   │   │   │   └── UCConduit.cs
    │   │   │   │   ├── Conveyor
    │   │   │   │   │   └── UCConveyor.cs
    │   │   │   │   ├── DialAisle
    │   │   │   │   │   ├── UCDialAisle.cs
    │   │   │   │   │   └── UCDialAisle.Designer.cs
    │   │   │   │   ├── EllipseDialAisle
    │   │   │   │   │   ├── UCEllipseDialAisle.cs
    │   │   │   │   │   ├── UCEllipseDialAisle.Designer.cs
    │   │   │   │   │   └── UCEllipseDialAisle.resx
    │   │   │   │   ├── House
    │   │   │   │   │   ├── UCHouse.cs
    │   │   │   │   │   └── UCHouse.Designer.cs
    │   │   │   │   ├── Lamp
    │   │   │   │   │   ├── UCAlarmLamp.cs
    │   │   │   │   │   └── UCSignalLamp.cs
    │   │   │   │   ├── Meter
    │   │   │   │   │   └── UCMeter.cs
    │   │   │   │   ├── MindMapping
    │   │   │   │   │   ├── MindMappingItemEntity.cs
    │   │   │   │   │   ├── UCMindMapping.cs
    │   │   │   │   │   ├── UCMindMappingPanel.cs
    │   │   │   │   │   ├── UCMindMappingPanel.Designer.cs
    │   │   │   │   │   └── UCMindMappingPanel.resx
    │   │   │   │   ├── Pond
    │   │   │   │   │   └── UCPond.cs
    │   │   │   │   ├── Rotor
    │   │   │   │   │   ├── UCRotor.cs
    │   │   │   │   │   ├── UCRotor.Designer.cs
    │   │   │   │   │   └── UCRotor.resx
    │   │   │   │   ├── Syringe
    │   │   │   │   │   ├── UCSyringe_Horizontal.cs
    │   │   │   │   │   ├── UCSyringe_Horizontal.Designer.cs
    │   │   │   │   │   ├── UCSyringe_Horizontal.resx
    │   │   │   │   │   ├── UCSyringe_Vertical.cs
    │   │   │   │   │   ├── UCSyringe_Vertical.Designer.cs
    │   │   │   │   │   └── UCSyringe_Vertical.resx
    │   │   │   │   ├── Thermometer
    │   │   │   │   │   └── UCThermometer.cs
    │   │   │   │   ├── Turntable
    │   │   │   │   │   ├── UCTurntable.cs
    │   │   │   │   │   ├── UCTurntable.Designer.cs
    │   │   │   │   │   └── UCTurntable.resx
    │   │   │   │   └── Valve
    │   │   │   │       └── UCValve.cs
    │   │   │   ├── GraphicalOverlay
    │   │   │   │   ├── GraphicalOverlayComponent.cs
    │   │   │   │   └── GraphicalOverlayComponent.designer.cs
    │   │   │   ├── KeyBord
    │   │   │   │   ├── UCKeyBorderAll.cs
    │   │   │   │   ├── UCKeyBorderAll.Designer.cs
    │   │   │   │   ├── UCKeyBorderAll.resx
    │   │   │   │   ├── UCKeyBorderNum.cs
    │   │   │   │   ├── UCKeyBorderNum.Designer.cs
    │   │   │   │   ├── UCKeyBorderNum.resx
    │   │   │   │   ├── UCKeyBorderPay.cs
    │   │   │   │   ├── UCKeyBorderPay.Designer.cs
    │   │   │   │   └── UCKeyBorderPay.resx
    │   │   │   ├── LED
    │   │   │   │   ├── UCLEDData.cs
    │   │   │   │   ├── UCLEDData.Designer.cs
    │   │   │   │   ├── UCLEDData.resx
    │   │   │   │   ├── UCLEDDataTime.cs
    │   │   │   │   ├── UCLEDDataTime.Designer.cs
    │   │   │   │   ├── UCLEDDataTime.resx
    │   │   │   │   ├── UCLEDNum.cs
    │   │   │   │   ├── UCLEDNums.cs
    │   │   │   │   ├── UCLEDNums.Designer.cs
    │   │   │   │   ├── UCLEDNums.resx
    │   │   │   │   ├── UCLEDTime.cs
    │   │   │   │   ├── UCLEDTime.Designer.cs
    │   │   │   │   └── UCLEDTime.resx
    │   │   │   ├── List
    │   │   │   │   ├── IListViewItem.cs
    │   │   │   │   ├── UCHorizontalList.cs
    │   │   │   │   ├── UCHorizontalList.Designer.cs
    │   │   │   │   ├── UCHorizontalListItem.cs
    │   │   │   │   ├── UCHorizontalListItem.Designer.cs
    │   │   │   │   ├── UCHorizontalListItem.resx
    │   │   │   │   ├── UCHorizontalList.resx
    │   │   │   │   ├── UCListExt.cs
    │   │   │   │   ├── UCListExt.Designer.cs
    │   │   │   │   ├── UCListExt.resx
    │   │   │   │   ├── UCListItemExt.cs
    │   │   │   │   ├── UCListItemExt.Designer.cs
    │   │   │   │   ├── UCListItemExt.resx
    │   │   │   │   ├── UCListView.cs
    │   │   │   │   ├── UCListView.Designer.cs
    │   │   │   │   ├── UCListViewItem.cs
    │   │   │   │   ├── UCListViewItem.Designer.cs
    │   │   │   │   ├── UCListViewItem.resx
    │   │   │   │   └── UCListView.resx
    │   │   │   ├── Menu
    │   │   │   │   ├── IMenuItem.cs
    │   │   │   │   ├── MenuItemEntity.cs
    │   │   │   │   ├── UCMenuChildrenItem.cs
    │   │   │   │   ├── UCMenuChildrenItem.Designer.cs
    │   │   │   │   ├── UCMenuChildrenItem.resx
    │   │   │   │   ├── UCMenu.cs
    │   │   │   │   ├── UCMenu.Designer.cs
    │   │   │   │   ├── UCMenuParentItem.cs
    │   │   │   │   ├── UCMenuParentItem.Designer.cs
    │   │   │   │   ├── UCMenuParentItem.resx
    │   │   │   │   └── UCMenu.resx
    │   │   │   ├── Navigation
    │   │   │   │   ├── CrumbNavigationClickEventArgs.cs
    │   │   │   │   ├── CrumbNavigationItem.cs
    │   │   │   │   ├── UCCrumbNavigation.cs
    │   │   │   │   ├── UCCrumbNavigation.Designer.cs
    │   │   │   │   └── UCCrumbNavigation.resx
    │   │   │   ├── NavigationMenu
    │   │   │   │   ├── NavigationMenuItemBase.cs
    │   │   │   │   ├── NavigationMenuItem.cs
    │   │   │   │   ├── NavigationMenuItemExt.cs
    │   │   │   │   ├── UCNavigationMenu.cs
    │   │   │   │   ├── UCNavigationMenu.Designer.cs
    │   │   │   │   ├── UCNavigationMenuExt.cs
    │   │   │   │   ├── UCNavigationMenuExt.Designer.cs
    │   │   │   │   ├── UCNavigationMenuExt.resx
    │   │   │   │   ├── UCNavigationMenuOffice.cs
    │   │   │   │   ├── UCNavigationMenuOffice.Designer.cs
    │   │   │   │   ├── UCNavigationMenuOffice.resx
    │   │   │   │   └── UCNavigationMenu.resx
    │   │   │   ├── Page
    │   │   │   │   ├── IPageControl.cs
    │   │   │   │   ├── PageControlEventHandler.cs
    │   │   │   │   ├── PageModel.cs
    │   │   │   │   ├── UCPagerControl2.cs
    │   │   │   │   ├── UCPagerControl2.Designer.cs
    │   │   │   │   ├── UCPagerControl2.resx
    │   │   │   │   ├── UCPagerControlBase.cs
    │   │   │   │   ├── UCPagerControlBase.resx
    │   │   │   │   ├── UCPagerControl.cs
    │   │   │   │   ├── UCPagerControl.Designer.cs
    │   │   │   │   └── UCPagerControl.resx
    │   │   │   ├── Panel
    │   │   │   │   ├── UCPanelQuote.cs
    │   │   │   │   ├── UCPanelTitle.cs
    │   │   │   │   ├── UCPanelTitle.Designer.cs
    │   │   │   │   └── UCPanelTitle.resx
    │   │   │   ├── Process
    │   │   │   │   ├── UCProcessEllipse.cs
    │   │   │   │   ├── UCProcessEllipse.Designer.cs
    │   │   │   │   ├── UCProcessEllipse.resx
    │   │   │   │   ├── UCProcessExt.cs
    │   │   │   │   ├── UCProcessExt.Designer.cs
    │   │   │   │   ├── UCProcessExt.resx
    │   │   │   │   ├── UCProcessLine.cs
    │   │   │   │   ├── UCProcessLineExt.cs
    │   │   │   │   ├── UCProcessLineExt.Designer.cs
    │   │   │   │   ├── UCProcessLineExt.resx
    │   │   │   │   ├── UCProcessRoll.cs
    │   │   │   │   ├── UCProcessWave.cs
    │   │   │   │   ├── UCProcessWave.Designer.cs
    │   │   │   │   └── UCProcessWave.resx
    │   │   │   ├── RadioButton
    │   │   │   │   ├── UCRadioButton.cs
    │   │   │   │   ├── UCRadioButton.Designer.cs
    │   │   │   │   └── UCRadioButton.resx
    │   │   │   ├── Roll
    │   │   │   │   └── UCRollText.cs
    │   │   │   ├── Sampling
    │   │   │   │   └── UCSampling.cs
    │   │   │   ├── ScrollBar
    │   │   │   │   ├── ScrollbarComponent.cs
    │   │   │   │   ├── ScrollbarControlDesigner.cs
    │   │   │   │   ├── UCHScrollbar.cs
    │   │   │   │   ├── UCVScrollbar.cs
    │   │   │   │   └── UCVScrollbar.resx
    │   │   │   ├── Shadow
    │   │   │   │   └── ShadowComponent.cs
    │   │   │   ├── Split
    │   │   │   │   ├── UCSplitLine_H.cs
    │   │   │   │   ├── UCSplitLine_H.Designer.cs
    │   │   │   │   ├── UCSplitLine_H.resx
    │   │   │   │   ├── UCSplitLine_V.cs
    │   │   │   │   ├── UCSplitLine_V.Designer.cs
    │   │   │   │   └── UCSplitLine_V.resx
    │   │   │   ├── SplitLabel
    │   │   │   │   └── UCSplitLabel.cs
    │   │   │   ├── Step
    │   │   │   │   ├── UCStep.cs
    │   │   │   │   ├── UCStep.Designer.cs
    │   │   │   │   └── UCStep.resx
    │   │   │   ├── Switch
    │   │   │   │   ├── UCSwitch.cs
    │   │   │   │   ├── UCSwitch.Designer.cs
    │   │   │   │   └── UCSwitch.resx
    │   │   │   ├── Tab
    │   │   │   │   └── TabControlExt.cs
    │   │   │   ├── Text
    │   │   │   │   ├── KeyBoardType.cs
    │   │   │   │   ├── TextBoxEx.cs
    │   │   │   │   ├── TextBoxEx.Designer.cs
    │   │   │   │   ├── TextBoxTransparent.cs
    │   │   │   │   ├── TextBoxTransparent.resx
    │   │   │   │   ├── UCNumTextBox.cs
    │   │   │   │   ├── UCNumTextBox.Designer.cs
    │   │   │   │   ├── UCNumTextBox.resx
    │   │   │   │   ├── UCTextBoxEx.cs
    │   │   │   │   ├── UCTextBoxEx.Designer.cs
    │   │   │   │   ├── UCTextBoxEx.resx
    │   │   │   │   └── win32.cs
    │   │   │   ├── TimeLine
    │   │   │   │   ├── UCTimeLine.cs
    │   │   │   │   ├── UCTimeLine.Designer.cs
    │   │   │   │   └── UCTimeLine.resx
    │   │   │   ├── ToolStripRendererEx
    │   │   │   │   ├── ControlPaintEx.cs
    │   │   │   │   ├── GraphicsPathHelper.cs
    │   │   │   │   ├── InterpolationModeGraphics.cs
    │   │   │   │   ├── ProfessionalToolStripRendererEx.cs
    │   │   │   │   ├── RegionHelper.cs
    │   │   │   │   ├── RenderHelper.cs
    │   │   │   │   ├── RoundStyle.cs
    │   │   │   │   ├── SmoothingModeGraphics.cs
    │   │   │   │   ├── TextRenderingHintGraphics.cs
    │   │   │   │   └── ToolStripColorTable.cs
    │   │   │   ├── TrackBar
    │   │   │   │   └── UCTrackBar.cs
    │   │   │   ├── Transfer
    │   │   │   │   ├── TransferEventArgs.cs
    │   │   │   │   ├── UCTransfer.cs
    │   │   │   │   ├── UCTransfer.Designer.cs
    │   │   │   │   └── UCTransfer.resx
    │   │   │   ├── Treeview
    │   │   │   │   └── TreeViewEx.cs
    │   │   │   ├── UCControlBase.cs
    │   │   │   ├── UCControlBase.Designer.cs
    │   │   │   ├── UCControlBase.resx
    │   │   │   ├── Verification
    │   │   │   │   ├── VerificationAttribute.cs
    │   │   │   │   ├── VerificationComponent.cs
    │   │   │   │   ├── VerificationEventArgs.cs
    │   │   │   │   └── VerificationModel.cs
    │   │   │   └── Wave
    │   │   │       ├── UCWaveChart.cs
    │   │   │       └── UCWave.cs
    │   │   ├── Forms
    │   │   │   ├── FrmAnchor.cs
    │   │   │   ├── FrmAnchor.Designer.cs
    │   │   │   ├── FrmAnchor.resx
    │   │   │   ├── FrmAnchorTips.cs
    │   │   │   ├── FrmAnchorTips.Designer.cs
    │   │   │   ├── FrmAnchorTips.resx
    │   │   │   ├── FrmBack.cs
    │   │   │   ├── FrmBack.Designer.cs
    │   │   │   ├── FrmBack.resx
    │   │   │   ├── FrmBase.cs
    │   │   │   ├── FrmBase.Designer.cs
    │   │   │   ├── FrmBase.resx
    │   │   │   ├── FrmDialog.cs
    │   │   │   ├── FrmDialog.Designer.cs
    │   │   │   ├── FrmDialog.resx
    │   │   │   ├── FrmInputs.cs
    │   │   │   ├── FrmInputs.Designer.cs
    │   │   │   ├── FrmInputs.resx
    │   │   │   ├── FrmLoading.cs
    │   │   │   ├── FrmLoading.Designer.cs
    │   │   │   ├── FrmLoading.resx
    │   │   │   ├── FrmTips.cs
    │   │   │   ├── FrmTips.Designer.cs
    │   │   │   ├── FrmTips.resx
    │   │   │   ├── FrmTransparent.cs
    │   │   │   ├── FrmTransparent.Designer.cs
    │   │   │   ├── FrmTransparent.resx
    │   │   │   ├── FrmWaiting.cs
    │   │   │   ├── FrmWaiting.Designer.cs
    │   │   │   ├── FrmWaiting.resx
    │   │   │   ├── FrmWithOKCancel1.cs
    │   │   │   ├── FrmWithOKCancel1.Designer.cs
    │   │   │   ├── FrmWithOKCancel1.resx
    │   │   │   ├── FrmWithOKCancel2.cs
    │   │   │   ├── FrmWithOKCancel2.Designer.cs
    │   │   │   ├── FrmWithOKCancel2.resx
    │   │   │   ├── FrmWithTitle.cs
    │   │   │   ├── FrmWithTitle.Designer.cs
    │   │   │   └── FrmWithTitle.resx
    │   │   ├── HandInput
    │   │   │   ├── certificate
    │   │   │   ├── certificate64
    │   │   │   ├── HandInput64.dll
    │   │   │   ├── handinput.cupf
    │   │   │   ├── HandInput.dll
    │   │   │   ├── 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
    │   │   ├── HZH_Controls.csproj
    │   │   ├── HZH_Controls.nuspec
    │   │   ├── IconFont
    │   │   │   ├── ElegantIcons.ttf
    │   │   │   ├── FontAwesome.ttf
    │   │   │   ├── FontIcons.cs
    │   │   │   └── FontImages.cs
    │   │   ├── nuget.exe
    │   │   ├── Properties
    │   │   │   ├── AssemblyInfo.cs
    │   │   │   ├── Resources.Designer.cs
    │   │   │   └── Resources.resx
    │   │   ├── Resources
    │   │   │   ├── alarm.png
    │   │   │   ├── back.png
    │   │   │   ├── caret-down.png
    │   │   │   ├── caret-right.png
    │   │   │   ├── checkbox00.png
    │   │   │   ├── checkbox0.png
    │   │   │   ├── checkbox10.png
    │   │   │   ├── checkbox1.png
    │   │   │   ├── chevron-left.png
    │   │   │   ├── chevron-right.png
    │   │   │   ├── ComboBox.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_clear.png
    │   │   │   ├── keyboard_bs.png
    │   │   │   ├── keyboard.png
    │   │   │   ├── left.png
    │   │   │   ├── list_add.png
    │   │   │   ├── list_subtract.png
    │   │   │   ├── loading.gif
    │   │   │   ├── more1.png
    │   │   │   ├── qty_delete.png
    │   │   │   ├── radioButton00.png
    │   │   │   ├── radioButton0.png
    │   │   │   ├── radioButton10.png
    │   │   │   ├── radioButton1.png
    │   │   │   ├── right.png
    │   │   │   ├── rigth.png
    │   │   │   ├── sanjiao1.png
    │   │   │   ├── sanjiao2.png
    │   │   │   ├── success.png
    │   │   │   ├── tips.png
    │   │   │   ├── up.png
    │   │   │   └── warning.png
    │   │   └── UIEditor
    │   │       ├── FrmSelectImage.cs
    │   │       ├── FrmSelectImage.Designer.cs
    │   │       ├── FrmSelectImage.resx
    │   │       └── ImagePropertyEditor.cs
    │   ├── HZH_Controls.sln
    │   ├── packages
    │   │   ├── LiveCharts.0.9.7
    │   │   │   ├── lib
    │   │   │   │   ├── net40
    │   │   │   │   │   ├── LiveCharts.dll
    │   │   │   │   │   ├── LiveCharts.pdb
    │   │   │   │   │   └── LiveCharts.xml
    │   │   │   │   ├── net45
    │   │   │   │   │   ├── LiveCharts.dll
    │   │   │   │   │   ├── LiveCharts.pdb
    │   │   │   │   │   └── LiveCharts.xml
    │   │   │   │   └── portable-net45 win8 wp8
    │   │   │   │       ├── LiveCharts.dll
    │   │   │   │       ├── LiveCharts.pdb
    │   │   │   │       └── LiveCharts.XML
    │   │   │   ├── LiveCharts.0.9.7.nupkg
    │   │   │   └── readme.txt
    │   │   ├── LiveCharts.WinForms.0.9.7.1
    │   │   │   ├── lib
    │   │   │   │   ├── net40
    │   │   │   │   │   ├── LiveCharts.WinForms.dll
    │   │   │   │   │   ├── LiveCharts.WinForms.pdb
    │   │   │   │   │   └── LiveCharts.WinForms.XML
    │   │   │   │   └── net45
    │   │   │   │       ├── LiveCharts.WinForms.dll
    │   │   │   │       ├── LiveCharts.WinForms.pdb
    │   │   │   │       └── LiveCharts.WinForms.XML
    │   │   │   ├── LiveCharts.WinForms.0.9.7.1.nupkg
    │   │   │   └── tools
    │   │   │       └── install.ps1
    │   │   ├── LiveCharts.Wpf.0.9.7
    │   │   │   ├── lib
    │   │   │   │   ├── net40
    │   │   │   │   │   ├── LiveCharts.Wpf.dll
    │   │   │   │   │   ├── LiveCharts.Wpf.pdb
    │   │   │   │   │   └── LiveCharts.Wpf.XML
    │   │   │   │   └── net45
    │   │   │   │       ├── LiveCharts.Wpf.dll
    │   │   │   │       ├── LiveCharts.Wpf.pdb
    │   │   │   │       └── LiveCharts.Wpf.XML
    │   │   │   ├── LiveCharts.Wpf.0.9.7.nupkg
    │   │   │   └── tools
    │   │   │       └── install.ps1
    │   │   └── repositories.config
    │   └── Test
    │       ├── FrmMain.cs
    │       ├── FrmMain.Designer.cs
    │       ├── FrmMain.resx
    │       ├── FrmOKCancel1Test.cs
    │       ├── FrmOKCancel1Test.Designer.cs
    │       ├── FrmOKCancel1Test.resx
    │       ├── FrmOKCancel2Test.cs
    │       ├── FrmOKCancel2Test.Designer.cs
    │       ├── FrmOKCancel2Test.resx
    │       ├── FrmTestFrmBack.cs
    │       ├── FrmTestFrmBack.Designer.cs
    │       ├── FrmTestFrmBack.resx
    │       ├── FrmTestLoading.cs
    │       ├── FrmTestLoading.Designer.cs
    │       ├── FrmTestLoading.resx
    │       ├── FrmWithTitleTest.cs
    │       ├── FrmWithTitleTest.Designer.cs
    │       ├── FrmWithTitleTest.resx
    │       ├── log.ico
    │       ├── logo.ico
    │       ├── packages.config
    │       ├── Program.cs
    │       ├── Properties
    │       │   ├── AssemblyInfo.cs
    │       │   ├── Resources.Designer.cs
    │       │   ├── Resources.resx
    │       │   ├── Settings.Designer.cs
    │       │   └── Settings.settings
    │       ├── Resources
    │       │   └── rowicon.png
    │       ├── Test.csproj
    │       ├── TestGridModel.cs
    │       ├── UC
    │       │   ├── UCTestArrow.cs
    │       │   ├── UCTestArrow.Designer.cs
    │       │   ├── UCTestArrow.resx
    │       │   ├── UCTestBlower.cs
    │       │   ├── UCTestBlower.Designer.cs
    │       │   ├── UCTestBlower.resx
    │       │   ├── UCTestBtns.cs
    │       │   ├── UCTestBtns.Designer.cs
    │       │   ├── UCTestBtns.resx
    │       │   ├── UCTestCalendarNotes.cs
    │       │   ├── UCTestCalendarNotes.Designer.cs
    │       │   ├── UCTestCalendarNotes.resx
    │       │   ├── UCTestColors.cs
    │       │   ├── UCTestColors.Designer.cs
    │       │   ├── UCTestColors.resx
    │       │   ├── UCTestConduit.cs
    │       │   ├── UCTestConduit.Designer.cs
    │       │   ├── UCTestConduit.resx
    │       │   ├── UCTestContextMenu.cs
    │       │   ├── UCTestContextMenu.Designer.cs
    │       │   ├── UCTestContextMenu.resx
    │       │   ├── UCTestConveyor.cs
    │       │   ├── UCTestConveyor.Designer.cs
    │       │   ├── UCTestConveyor.resx
    │       │   ├── UCTestDialAisle.cs
    │       │   ├── UCTestDialAisle.Designer.cs
    │       │   ├── UCTestDialAisle.resx
    │       │   ├── UCTestForms.cs
    │       │   ├── UCTestForms.Designer.cs
    │       │   ├── UCTestForms.resx
    │       │   ├── UCTestFunnelChart.cs
    │       │   ├── UCTestFunnelChart.Designer.cs
    │       │   ├── UCTestFunnelChart.resx
    │       │   ├── UCTestGraphicalOverlay.cs
    │       │   ├── UCTestGraphicalOverlay.Designer.cs
    │       │   ├── UCTestGraphicalOverlay.resx
    │       │   ├── UCTestGridTable.cs
    │       │   ├── UCTestGridTable_CustomCell.cs
    │       │   ├── UCTestGridTable_CustomCell.Designer.cs
    │       │   ├── UCTestGridTable_CustomCellIcon.cs
    │       │   ├── UCTestGridTable_CustomCellIcon.Designer.cs
    │       │   ├── UCTestGridTable_CustomCellIcon.resx
    │       │   ├── UCTestGridTable_CustomCell.resx
    │       │   ├── UCTestGridTableCustom.cs
    │       │   ├── UCTestGridTableCustom.Designer.cs
    │       │   ├── UCTestGridTableCustom.resx
    │       │   ├── UCTestGridTable.Designer.cs
    │       │   ├── UCTestGridTable.resx
    │       │   ├── UCTestHorizontalList.cs
    │       │   ├── UCTestHorizontalList.Designer.cs
    │       │   ├── UCTestHorizontalList.resx
    │       │   ├── UCTestIcon.cs
    │       │   ├── UCTestIcon.Designer.cs
    │       │   ├── UCTestIcon.resx
    │       │   ├── UCTestLED.cs
    │       │   ├── UCTestLED.Designer.cs
    │       │   ├── UCTestLED.resx
    │       │   ├── UCTestList.cs
    │       │   ├── UCTestList.Designer.cs
    │       │   ├── UCTestList.resx
    │       │   ├── UCTestListView.cs
    │       │   ├── UCTestListView.Designer.cs
    │       │   ├── UCTestListView.resx
    │       │   ├── UCTestLiveChar_Pie.resx
    │       │   ├── UCTestLiveCharts
    │       │   │   ├── Cartesian
    │       │   │   │   ├── BasicBar
    │       │   │   │   │   ├── BasicColumnExample.cs
    │       │   │   │   │   ├── BasicColumnExample.Designer.cs
    │       │   │   │   │   ├── BasicColumnExample.resx
    │       │   │   │   │   ├── BasicRowExample.cs
    │       │   │   │   │   ├── BasicRowExample.Designer.cs
    │       │   │   │   │   └── BasicRowExample.resx
    │       │   │   │   ├── BasicBubbles
    │       │   │   │   │   ├── BasicBubblesExample.cs
    │       │   │   │   │   ├── BasicBubblesExample.Designer.cs
    │       │   │   │   │   └── BasicBubblesExample.resx
    │       │   │   │   ├── BasicLine
    │       │   │   │   │   ├── BasicLineExample.cs
    │       │   │   │   │   ├── BasicLineExample.Designer.cs
    │       │   │   │   │   └── BasicLineExample.resx
    │       │   │   │   ├── Basic Stacked Bar
    │       │   │   │   │   ├── BasicsStackedRowExample.cs
    │       │   │   │   │   ├── BasicsStackedRowExample.Designer.cs
    │       │   │   │   │   ├── BasicsStackedRowExample.resx
    │       │   │   │   │   ├── BasicStackedColumnExample.cs
    │       │   │   │   │   ├── BasicStackedColumnExample.Designer.cs
    │       │   │   │   │   └── BasicStackedColumnExample.resx
    │       │   │   │   ├── ConstantChanges
    │       │   │   │   │   ├── ConstantChanges.cs
    │       │   │   │   │   ├── ConstantChanges.Designer.cs
    │       │   │   │   │   ├── ConstantChanges.resx
    │       │   │   │   │   └── MeasureModel.cs
    │       │   │   │   ├── Customized Series
    │       │   │   │   │   ├── Customized Line Series.cs
    │       │   │   │   │   ├── Customized Line Series.Designer.cs
    │       │   │   │   │   └── Customized Line Series.resx
    │       │   │   │   ├── DataPagination
    │       │   │   │   │   ├── DataPaginationExample.cs
    │       │   │   │   │   ├── DataPaginationExample.Designer.cs
    │       │   │   │   │   └── DataPaginationExample.resx
    │       │   │   │   ├── DateTime
    │       │   │   │   │   ├── DateTimeExample.cs
    │       │   │   │   │   ├── DateTimeExample.Designer.cs
    │       │   │   │   │   └── DateTimeExample.resx
    │       │   │   │   ├── DynamicVisibility
    │       │   │   │   │   ├── DynamicVisibiltyExample.cs
    │       │   │   │   │   ├── DynamicVisibiltyExample.Designer.cs
    │       │   │   │   │   └── DynamicVisibiltyExample.resx
    │       │   │   │   ├── Events
    │       │   │   │   │   ├── EventsExample.cs
    │       │   │   │   │   ├── EventsExample.Designer.cs
    │       │   │   │   │   └── EventsExample.resx
    │       │   │   │   ├── Financial
    │       │   │   │   │   ├── FinancialExample.cs
    │       │   │   │   │   ├── FinancialExample.Designer.cs
    │       │   │   │   │   └── FinancialExample.resx
    │       │   │   │   ├── FullyResponsive
    │       │   │   │   │   ├── FullyResponsive.cs
    │       │   │   │   │   ├── FullyResponsive.Designer.cs
    │       │   │   │   │   └── FullyResponsive.resx
    │       │   │   │   ├── FunnelChart
    │       │   │   │   │   ├── FunnelExample.cs
    │       │   │   │   │   ├── FunnelExample.Designer.cs
    │       │   │   │   │   ├── FunnelExample.resx
    │       │   │   │   │   └── Resources
    │       │   │   │   │       ├── fingerprint.png
    │       │   │   │   │       ├── user.png
    │       │   │   │   │       └── view.png
    │       │   │   │   ├── GanttChart
    │       │   │   │   │   ├── GanttExample.cs
    │       │   │   │   │   ├── GanttExample.Designer.cs
    │       │   │   │   │   └── GanttExample.resx
    │       │   │   │   ├── HeatSeriesExample
    │       │   │   │   │   ├── HeatSeriesExample.cs
    │       │   │   │   │   ├── HeatSeriesExample.Designer.cs
    │       │   │   │   │   └── HeatSeriesExample.resx
    │       │   │   │   ├── Inverted Series
    │       │   │   │   │   ├── InvertedSeries.cs
    │       │   │   │   │   ├── InvertedSeries.Designer.cs
    │       │   │   │   │   └── InvertedSeries.resx
    │       │   │   │   ├── Irregular Intervals
    │       │   │   │   │   ├── IrregularIntervalsExample.cs
    │       │   │   │   │   ├── IrregularIntervalsExample.Designer.cs
    │       │   │   │   │   └── IrregularIntervalsExample.resx
    │       │   │   │   ├── Labels
    │       │   │   │   │   ├── Labels.cs
    │       │   │   │   │   ├── Labels.Designer.cs
    │       │   │   │   │   └── Labels.resx
    │       │   │   │   ├── Linq
    │       │   │   │   │   ├── cities.csv
    │       │   │   │   │   ├── City.cs
    │       │   │   │   │   ├── DataBase.cs
    │       │   │   │   │   ├── LinqExample.cs
    │       │   │   │   │   ├── LinqExample.Designer.cs
    │       │   │   │   │   └── LinqExample.resx
    │       │   │   │   ├── LogarithmScale
    │       │   │   │   │   ├── LogarithmSacale.cs
    │       │   │   │   │   ├── LogarithmSacale.Designer.cs
    │       │   │   │   │   └── LogarithmSacale.resx
    │       │   │   │   ├── MissingPoints
    │       │   │   │   │   ├── MissingPoint.cs
    │       │   │   │   │   ├── MissingPoint.Designer.cs
    │       │   │   │   │   └── MissingPoint.resx
    │       │   │   │   ├── MultiAxes
    │       │   │   │   │   ├── MultipleAxesExample.cs
    │       │   │   │   │   ├── MultipleAxesExample.Designer.cs
    │       │   │   │   │   └── MultipleAxesExample.resx
    │       │   │   │   ├── NegativeStackedRow
    │       │   │   │   │   ├── NegativeStackedRow.cs
    │       │   │   │   │   ├── NegativeStackedRow.Designer.cs
    │       │   │   │   │   └── NegativeStackedRow.resx
    │       │   │   │   ├── PointState
    │       │   │   │   │   ├── PointState.cs
    │       │   │   │   │   ├── PointState.Designer.cs
    │       │   │   │   │   └── PointState.resx
    │       │   │   │   ├── ScatterExample
    │       │   │   │   │   ├── ScatterForm.cs
    │       │   │   │   │   ├── ScatterForm.Designer.cs
    │       │   │   │   │   └── ScatterForm.resx
    │       │   │   │   ├── Sections
    │       │   │   │   │   ├── SectionsExample.cs
    │       │   │   │   │   ├── SectionsExample.Designer.cs
    │       │   │   │   │   └── SectionsExample.resx
    │       │   │   │   ├── StackedArea
    │       │   │   │   │   ├── StackedAreaExample.cs
    │       │   │   │   │   ├── StackedAreaExample.Designer.cs
    │       │   │   │   │   └── StackedAreaExample.resx
    │       │   │   │   ├── StepLine
    │       │   │   │   │   ├── StepLineExample.cs
    │       │   │   │   │   ├── StepLineExample.Designer.cs
    │       │   │   │   │   └── StepLineExample.resx
    │       │   │   │   ├── UielementsExample
    │       │   │   │   │   ├── UielementsExample.cs
    │       │   │   │   │   ├── UielementsExample.Designer.cs
    │       │   │   │   │   ├── UielementsExample.resx
    │       │   │   │   │   └── warning.png
    │       │   │   │   └── Zooming and Panning
    │       │   │   │       ├── ZomingAndPanningExample.cs
    │       │   │   │       ├── ZomingAndPanningExample.Designer.cs
    │       │   │   │       └── ZomingAndPanningExample.resx
    │       │   │   ├── Gauge
    │       │   │   │   ├── 360
    │       │   │   │   │   ├── Gauge360Example.cs
    │       │   │   │   │   ├── Gauge360Example.Designer.cs
    │       │   │   │   │   └── Gauge360Example.resx
    │       │   │   │   └── AngularGauge
    │       │   │   │       ├── AngularGugeForm.cs
    │       │   │   │       ├── AngularGugeForm.Designer.cs
    │       │   │   │       └── AngularGugeForm.resx
    │       │   │   ├── Maps
    │       │   │   │   ├── GeoMapExample.cs
    │       │   │   │   ├── GeoMapExample.Designer.cs
    │       │   │   │   ├── GeoMapExample.resx
    │       │   │   │   └── World.xml
    │       │   │   └── PieChart
    │       │   │       ├── DoughnutExample.cs
    │       │   │       ├── DoughnutExample.Designer.cs
    │       │   │       ├── DoughnutExample.resx
    │       │   │       ├── PieChartExample.cs
    │       │   │       ├── PieChartExample.Designer.cs
    │       │   │       └── PieChartExample.resx
    │       │   ├── UCTestLiveCharts.cs
    │       │   ├── UCTestLiveCharts.Designer.cs
    │       │   ├── UCTestLiveCharts.resx
    │       │   ├── UCTestMenu.cs
    │       │   ├── UCTestMenu.Designer.cs
    │       │   ├── UCTestMenu.resx
    │       │   ├── UCTestMeter.cs
    │       │   ├── UCTestMeter.Designer.cs
    │       │   ├── UCTestMeter.resx
    │       │   ├── UCTestMindMapping.cs
    │       │   ├── UCTestMindMapping.Designer.cs
    │       │   ├── UCTestMindMapping.resx
    │       │   ├── UCTestNavigation.cs
    │       │   ├── UCTestNavigation.Designer.cs
    │       │   ├── UCTestNavigationMenu.cs
    │       │   ├── UCTestNavigationMenu.Designer.cs
    │       │   ├── UCTestNavigationMenuExt.cs
    │       │   ├── UCTestNavigationMenuExt.Designer.cs
    │       │   ├── UCTestNavigationMenuExt.resx
    │       │   ├── UCTestNavigationMenuOffice.cs
    │       │   ├── UCTestNavigationMenuOffice.Designer.cs
    │       │   ├── UCTestNavigationMenuOfficeItem.cs
    │       │   ├── UCTestNavigationMenuOfficeItem.Designer.cs
    │       │   ├── UCTestNavigationMenuOfficeItem.resx
    │       │   ├── UCTestNavigationMenuOffice.resx
    │       │   ├── UCTestNavigationMenu.resx
    │       │   ├── UCTestNavigation.resx
    │       │   ├── UCTestPage.cs
    │       │   ├── UCTestPage.Designer.cs
    │       │   ├── UCTestPage.resx
    │       │   ├── UCTestPanelQuote.cs
    │       │   ├── UCTestPanelQuote.Designer.cs
    │       │   ├── UCTestPanelQuote.resx
    │       │   ├── UCTestPanelTitle.cs
    │       │   ├── UCTestPanelTitle.Designer.cs
    │       │   ├── UCTestPanelTitle.resx
    │       │   ├── UCTestProcess.cs
    │       │   ├── UCTestProcess.Designer.cs
    │       │   ├── UCTestProcess.resx
    │       │   ├── UCTestRadarChart.cs
    │       │   ├── UCTestRadarChart.Designer.cs
    │       │   ├── UCTestRadarChart.resx
    │       │   ├── UCTestRollText.cs
    │       │   ├── UCTestRollText.Designer.cs
    │       │   ├── UCTestRollText.resx
    │       │   ├── UCTestRotor.cs
    │       │   ├── UCTestRotor.Designer.cs
    │       │   ├── UCTestRotor.resx
    │       │   ├── UCTestSampling.cs
    │       │   ├── UCTestSampling.Designer.cs
    │       │   ├── UCTestSampling.resx
    │       │   ├── UCTestScrollbar.cs
    │       │   ├── UCTestScrollbar.Designer.cs
    │       │   ├── UCTestScrollbar.resx
    │       │   ├── UCTestShadow.cs
    │       │   ├── UCTestShadow.Designer.cs
    │       │   ├── UCTestShadow.resx
    │       │   ├── UCTestSignalLamp.cs
    │       │   ├── UCTestSignalLamp.Designer.cs
    │       │   ├── UCTestSignalLamp.resx
    │       │   ├── UCTestSplitLabel.cs
    │       │   ├── UCTestSplitLabel.Designer.cs
    │       │   ├── UCTestSplitLabel.resx
    │       │   ├── UCTestStep.cs
    │       │   ├── UCTestStep.Designer.cs
    │       │   ├── UCTestStep.resx
    │       │   ├── UCTestSyringe.cs
    │       │   ├── UCTestSyringe.Designer.cs
    │       │   ├── UCTestSyringe.resx
    │       │   ├── UCTestTab.cs
    │       │   ├── UCTestTab.Designer.cs
    │       │   ├── UCTestTab.resx
    │       │   ├── UCTestThermometer.cs
    │       │   ├── UCTestThermometer.Designer.cs
    │       │   ├── UCTestThermometer.resx
    │       │   ├── UCTestTimeLine.cs
    │       │   ├── UCTestTimeLine.Designer.cs
    │       │   ├── UCTestTimeLine.resx
    │       │   ├── UCTestTips.cs
    │       │   ├── UCTestTips.Designer.cs
    │       │   ├── UCTestTips.resx
    │       │   ├── UCTestTrackbar.cs
    │       │   ├── UCTestTrackbar.Designer.cs
    │       │   ├── UCTestTrackbar.resx
    │       │   ├── UCTestTransfer.cs
    │       │   ├── UCTestTransfer.Designer.cs
    │       │   ├── UCTestTransfer.resx
    │       │   ├── UCTestTreeGridTable.cs
    │       │   ├── UCTestTreeGridTable.Designer.cs
    │       │   ├── UCTestTreeGridTable.resx
    │       │   ├── UCTestTreeview.cs
    │       │   ├── UCTestTreeview.Designer.cs
    │       │   ├── UCTestTreeview.resx
    │       │   ├── UCTestTurntable.cs
    │       │   ├── UCTestTurntable.Designer.cs
    │       │   ├── UCTestTurntable.resx
    │       │   ├── UCTestUCEllipseDialAisle.cs
    │       │   ├── UCTestUCEllipseDialAisle.Designer.cs
    │       │   ├── UCTestUCEllipseDialAisle.resx
    │       │   ├── UCTestValve.cs
    │       │   ├── UCTestValve.Designer.cs
    │       │   ├── UCTestValve.resx
    │       │   ├── UCTestVerification.cs
    │       │   ├── UCTestVerification.Designer.cs
    │       │   ├── UCTestVerification.resx
    │       │   ├── UCTestWaveChart.cs
    │       │   ├── UCTestWaveChart.Designer.cs
    │       │   ├── UCTestWaveChart.resx
    │       │   ├── UCTestWave.cs
    │       │   ├── UCTestWave.Designer.cs
    │       │   └── UCTestWave.resx
    │       ├── UCShouQuan.cs
    │       ├── UCShouQuan.Designer.cs
    │       └── UCShouQuan.resx
    ├── LICENSE
    ├── logo.ico
    ├── README_CN.md
    └── README.md

125 directories, 768 files

标签:

实例下载地址

HZHControls: 高性能触控支持C# WinForm自定义控件

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警