在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例桌面应用界面/GUI → C#:UI各类控件

C#:UI各类控件

桌面应用界面/GUI

下载此实例
  • 开发语言:C#
  • 实例大小:41.24M
  • 下载次数:88
  • 浏览次数:818
  • 发布时间:2022-10-09
  • 实例类别:桌面应用界面/GUI
  • 发 布 人:andy18922265212
  • 文件格式:.rar
  • 所需积分:10
 相关标签: 控件 UI

实例介绍

【实例简介】C#:UI各类控件
【实例截图】

from clipboard

from clipboard
【核心代码】
.
├── C#:UI各类控件_各类控件案例.rar
├── ChartSample
│   ├── ChartSample
│   │   ├── ChartSample.csproj
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.cs
│   │   ├── Form1.resx
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── ChartSample.exe
│   │   │       ├── ChartSample.pdb
│   │   │       ├── ChartSample.vshost.exe
│   │   │       └── ChartSample.vshost.exe.manifest
│   │   └── obj
│   │       └── x86
│   │           └── Debug
│   │               ├── ChartSample.Form1.resources
│   │               ├── ChartSample.Properties.Resources.resources
│   │               ├── ChartSample.csproj.FileListAbsolute.txt
│   │               ├── ChartSample.csproj.GenerateResource.Cache
│   │               ├── ChartSample.csprojResolveAssemblyReference.cache
│   │               ├── ChartSample.exe
│   │               ├── ChartSample.pdb
│   │               ├── DesignTimeResolveAssemblyReferences.cache
│   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │               ├── GenerateResource.read.1.tlog
│   │               ├── GenerateResource.write.1.tlog
│   │               └── TempPE
│   ├── ChartSample.sln
│   ├── ChartSample.suo
│   └── ChartSample.v12.suo
├── WindowUI
│   ├── TX.Framework.WindowUI
│   │   ├── AppCode
│   │   │   ├── Model
│   │   │   │   ├── Enums.cs
│   │   │   │   ├── RoundRectangle.cs
│   │   │   │   └── Structs.CS
│   │   │   ├── SKin
│   │   │   │   ├── ColorScheme.cs
│   │   │   │   ├── EnumTheme.cs
│   │   │   │   ├── LoadResource.cs
│   │   │   │   ├── SkinManager.cs
│   │   │   │   ├── SkinTheme.cs
│   │   │   │   ├── SkinThemeBlueSea.cs
│   │   │   │   ├── SkinThemeDefault.cs
│   │   │   │   ├── SkinThemeKissOfAngel.cs
│   │   │   │   ├── SkinThemeNoFlower.cs
│   │   │   │   └── SkinThemeSunsetRed.cs
│   │   │   ├── Utility
│   │   │   │   ├── Callback.cs
│   │   │   │   ├── ControlHelper.cs
│   │   │   │   ├── GDIHelper.cs
│   │   │   │   └── Guard.cs
│   │   │   ├── {InteropServices}
│   │   │   │   └── APIs
│   │   │   │       ├── APIsClipboard.cs
│   │   │   │       ├── APIsComctl32.cs
│   │   │   │       ├── APIsEnums.cs
│   │   │   │       ├── APIsGdi.cs
│   │   │   │       ├── APIsMenu.cs
│   │   │   │       ├── APIsShell.cs
│   │   │   │       ├── APIsShlwapi.cs
│   │   │   │       ├── APIsStructs.cs
│   │   │   │       ├── APIsUser32.cs
│   │   │   │       ├── APIsUxTheme.cs
│   │   │   │       ├── APIsWndProc.cs
│   │   │   │       ├── COMInterfaces.cs
│   │   │   │       ├── ColorUtil.cs
│   │   │   │       └── TextUtil.cs
│   │   │   ├── {Reference}
│   │   │   │   ├── Caching
│   │   │   │   │   ├── Cache.cs
│   │   │   │   │   ├── CacheStrategy.cs
│   │   │   │   │   ├── ICache.cs
│   │   │   │   │   ├── LruCache.cs
│   │   │   │   │   └── ThreadSafeCache.cs
│   │   │   │   ├── Collections
│   │   │   │   │   ├── DoubleEndedQueue.cs
│   │   │   │   │   ├── Generic
│   │   │   │   │   │   ├── HashList.cs
│   │   │   │   │   │   ├── IEnumerableExtensions.cs
│   │   │   │   │   │   ├── LatestPriorityDictionary.cs
│   │   │   │   │   │   ├── PagedCollection.cs
│   │   │   │   │   │   └── TopDeque{TKey,TValue}.cs
│   │   │   │   │   ├── PriorityQueue.cs
│   │   │   │   │   ├── Queue.cs
│   │   │   │   │   └── Specialized
│   │   │   │   │       └── NameValueCollectionExtensions.cs
│   │   │   │   ├── ComponentModel
│   │   │   │   │   ├── ChainingPropertyDescriptor.cs
│   │   │   │   │   ├── HyperTypeDescriptionProvider.cs
│   │   │   │   │   └── HyperTypeDescriptor.cs
│   │   │   │   ├── ImageHelper.cs
│   │   │   │   ├── Pair.cs
│   │   │   │   ├── Reflection
│   │   │   │   │   ├── CallInfo.cs
│   │   │   │   │   ├── ClassHelper.cs
│   │   │   │   │   ├── Delegates.cs
│   │   │   │   │   ├── Emit
│   │   │   │   │   │   ├── ArrayGetEmitter.cs
│   │   │   │   │   │   ├── ArraySetEmitter.cs
│   │   │   │   │   │   ├── BaseEmitter.cs
│   │   │   │   │   │   ├── CtorInvocationEmitter.cs
│   │   │   │   │   │   ├── EmitHelper.cs
│   │   │   │   │   │   ├── InvocationEmitter.cs
│   │   │   │   │   │   ├── LookupUtils.cs
│   │   │   │   │   │   ├── MapEmitter.cs
│   │   │   │   │   │   ├── MemberGetEmitter.cs
│   │   │   │   │   │   ├── MemberSetEmitter.cs
│   │   │   │   │   │   └── MethodInvocationEmitter.cs
│   │   │   │   │   ├── Extensions
│   │   │   │   │   │   ├── AttributeExtensions.cs
│   │   │   │   │   │   ├── ConstructorExtensions.cs
│   │   │   │   │   │   ├── ConstructorInfoExtensions.cs
│   │   │   │   │   │   ├── FieldExtensions.cs
│   │   │   │   │   │   ├── FieldInfoExtensions.cs
│   │   │   │   │   │   ├── MemberExtensions.cs
│   │   │   │   │   │   ├── MemberInfoExtensions.cs
│   │   │   │   │   │   ├── MethodExtensions.cs
│   │   │   │   │   │   ├── MethodInfoExtensions.cs
│   │   │   │   │   │   ├── ParameterInfoExtensions.cs
│   │   │   │   │   │   ├── PropertyExtensions.cs
│   │   │   │   │   │   └── PropertyInfoExtensions.cs
│   │   │   │   │   ├── Extensions.cs
│   │   │   │   │   ├── Flags.cs
│   │   │   │   │   ├── FormatOptions.cs
│   │   │   │   │   ├── MemberAdapter.cs
│   │   │   │   │   ├── MemberFilter.cs
│   │   │   │   │   ├── Probing
│   │   │   │   │   │   └── TypeConverter.cs
│   │   │   │   │   ├── ReflectionConst.cs
│   │   │   │   │   ├── V1
│   │   │   │   │   │   ├── AttributeEmitter.cs
│   │   │   │   │   │   ├── AttributeGetEmitter.cs
│   │   │   │   │   │   ├── AttributeSetEmitter.cs
│   │   │   │   │   │   ├── BaseEmitter_.cs
│   │   │   │   │   │   ├── CallInfo.cs
│   │   │   │   │   │   ├── CtorInvocationEmitter_.cs
│   │   │   │   │   │   ├── DelegateCache.cs
│   │   │   │   │   │   ├── InvocationEmitter_.cs
│   │   │   │   │   │   ├── MethodInvocationEmitter_.cs
│   │   │   │   │   │   └── Reflector.cs
│   │   │   │   │   └── ValueTypeHolder.cs
│   │   │   │   ├── Threading
│   │   │   │   │   ├── AsyncOperation.cs
│   │   │   │   │   ├── ILockable.cs
│   │   │   │   │   ├── Lockable.cs
│   │   │   │   │   └── ThreadSafeDictionary.cs
│   │   │   │   └── TypeExtensions.cs
│   │   │   ├── {Template}
│   │   │   │   ├── AST
│   │   │   │   │   ├── ExpressionNode.cs
│   │   │   │   │   ├── ForeachNode.cs
│   │   │   │   │   ├── IfNode.cs
│   │   │   │   │   ├── SetNode.cs
│   │   │   │   │   ├── TextNode.cs
│   │   │   │   │   ├── TokenNode.cs
│   │   │   │   │   └── WhileNode.cs
│   │   │   │   ├── Common
│   │   │   │   │   ├── IValueType.cs
│   │   │   │   │   ├── TemplateParser.cs
│   │   │   │   │   ├── TemplateTokenType.cs
│   │   │   │   │   ├── TokenMatch.cs
│   │   │   │   │   └── ValueTypePair.cs
│   │   │   │   ├── Config
│   │   │   │   │   ├── TemplateConfig.cs
│   │   │   │   │   └── Velocity
│   │   │   │   │       ├── Velocity.cs
│   │   │   │   │       └── VelocityConfig.cs
│   │   │   │   ├── Context
│   │   │   │   │   ├── AssignmentPermissions.cs
│   │   │   │   │   ├── CSharpContext.cs
│   │   │   │   │   ├── ContextFactory.cs
│   │   │   │   │   ├── ITemplateContext.cs
│   │   │   │   │   └── TemplateContext.cs
│   │   │   │   ├── Expression
│   │   │   │   │   ├── Expression.cs
│   │   │   │   │   ├── Expressions
│   │   │   │   │   │   ├── AddExpression.cs
│   │   │   │   │   │   ├── AndAlsoExpression.cs
│   │   │   │   │   │   ├── AsExpression.cs
│   │   │   │   │   │   ├── AssignmentExpression.cs
│   │   │   │   │   │   ├── BinaryArithmicExpression.cs
│   │   │   │   │   │   ├── BinaryExpression.cs
│   │   │   │   │   │   ├── BinaryExpressionHelper.cs
│   │   │   │   │   │   ├── BitwiseComplementExpression.cs
│   │   │   │   │   │   ├── CallExpression.cs
│   │   │   │   │   │   ├── CoalesceExpression.cs
│   │   │   │   │   │   ├── ConditionalExpression.cs
│   │   │   │   │   │   ├── ConstructorExpression.cs
│   │   │   │   │   │   ├── DivideExpression.cs
│   │   │   │   │   │   ├── FieldExpression.cs
│   │   │   │   │   │   ├── IndexExpression.cs
│   │   │   │   │   │   ├── IsExpression.cs
│   │   │   │   │   │   ├── MultiplyExpression.cs
│   │   │   │   │   │   ├── NegationExpression.cs
│   │   │   │   │   │   ├── OrElseExpression.cs
│   │   │   │   │   │   ├── SubtractExpression.cs
│   │   │   │   │   │   ├── TypeCastExpression.cs
│   │   │   │   │   │   ├── TypeOfExpression.cs
│   │   │   │   │   │   ├── UnaryMinusExpression.cs
│   │   │   │   │   │   ├── ValueExpression.cs
│   │   │   │   │   │   └── VariableExpression.cs
│   │   │   │   │   ├── IExpression.cs
│   │   │   │   │   ├── Parser
│   │   │   │   │   │   ├── CSharpParser.cs
│   │   │   │   │   │   ├── ExpressionParser.cs
│   │   │   │   │   │   ├── IExpressionParser.cs
│   │   │   │   │   │   ├── OperatorAssociativity.cs
│   │   │   │   │   │   ├── RPNExpression.cs
│   │   │   │   │   │   ├── Token.cs
│   │   │   │   │   │   ├── TokenDefinition.cs
│   │   │   │   │   │   └── TokenType.cs
│   │   │   │   │   └── Refletion
│   │   │   │   │       ├── ClassName.cs
│   │   │   │   │       ├── InstanceMethod.cs
│   │   │   │   │       ├── LazyBinder.cs
│   │   │   │   │       ├── MethodDefinition.cs
│   │   │   │   │       └── StaticMethod.cs
│   │   │   │   ├── TemplateEngine.cs
│   │   │   │   └── TemplateSyntax.cs
│   │   │   └── {Win32}
│   │   │       ├── Enums
│   │   │       │   └── APIsEnums.cs
│   │   │       ├── IniConfig.cs
│   │   │       ├── NativeMethods
│   │   │       │   ├── Comctl32.cs
│   │   │       │   ├── Gdi32.cs
│   │   │       │   └── User32.cs
│   │   │       ├── Structs
│   │   │       │   └── APIsStructs.cs
│   │   │       └── Win32.cs
│   │   ├── Config
│   │   │   ├── Skin
│   │   │   │   ├── BlueSea.config
│   │   │   │   ├── KissOfAngel.config
│   │   │   │   ├── NoFlower.config
│   │   │   │   ├── SunsetRed.config
│   │   │   │   └── bg
│   │   │   │       ├── bg01.jpg
│   │   │   │       ├── bg02.jpg
│   │   │   │       ├── bg03.jpg
│   │   │   │       ├── bg04.jpg
│   │   │   │       ├── bg05.jpg
│   │   │   │       └── bg06.jpg
│   │   │   ├── Skin.config
│   │   │   └── Skin.ini
│   │   ├── Controls
│   │   │   ├── Docking
│   │   │   │   ├── AutoHideStripBase.cs
│   │   │   │   ├── DockAreasEditor.cs
│   │   │   │   ├── DockContent.cs
│   │   │   │   ├── DockContentCollection.cs
│   │   │   │   ├── DockContentEventArgs.cs
│   │   │   │   ├── DockContentHandler.cs
│   │   │   │   ├── DockOutlineBase.cs
│   │   │   │   ├── DockPane.SplitterControl.cs
│   │   │   │   ├── DockPane.cs
│   │   │   │   ├── DockPaneCaptionBase.cs
│   │   │   │   ├── DockPaneCollection.cs
│   │   │   │   ├── DockPaneStripBase.cs
│   │   │   │   ├── DockPanel.AutoHideWindow.cs
│   │   │   │   ├── DockPanel.DockDragHandler.cs
│   │   │   │   ├── DockPanel.DragHandler.cs
│   │   │   │   ├── DockPanel.FocusManager.cs
│   │   │   │   ├── DockPanel.MdiClientController.cs
│   │   │   │   ├── DockPanel.Persistor.cs
│   │   │   │   ├── DockPanel.SplitterDragHandler.cs
│   │   │   │   ├── DockPanel.bmp
│   │   │   │   ├── DockPanel.cs
│   │   │   │   ├── DockPanelExtender.cs
│   │   │   │   ├── DockPanelSkin.cs
│   │   │   │   ├── DockWindow.SplitterControl.cs
│   │   │   │   ├── DockWindow.cs
│   │   │   │   ├── DockWindowCollection.cs
│   │   │   │   ├── DragForm.cs
│   │   │   │   ├── DummyControl.cs
│   │   │   │   ├── Enums.cs
│   │   │   │   ├── FloatWindow.cs
│   │   │   │   ├── FloatWindowCollection.cs
│   │   │   │   ├── Helpers
│   │   │   │   │   ├── DockHelper.cs
│   │   │   │   │   ├── DrawHelper.cs
│   │   │   │   │   ├── ResourceHelper.cs
│   │   │   │   │   └── Win32Helper.cs
│   │   │   │   ├── InertButtonBase.cs
│   │   │   │   ├── Interfaces.cs
│   │   │   │   ├── Localization.cs
│   │   │   │   ├── Measures.cs
│   │   │   │   ├── NestedDockingStatus.cs
│   │   │   │   ├── NestedPaneCollection.cs
│   │   │   │   ├── Resources
│   │   │   │   │   ├── DockIndicator_PaneDiamond.bmp
│   │   │   │   │   ├── DockIndicator_PaneDiamond_Bottom.bmp
│   │   │   │   │   ├── DockIndicator_PaneDiamond_Hotspot.bmp
│   │   │   │   │   ├── DockIndicator_PaneDiamond_HotspotIndex.bmp
│   │   │   │   │   ├── DockIndicator_PaneDiamond_Left.bmp
│   │   │   │   │   ├── DockIndicator_PaneDiamond_Right.bmp
│   │   │   │   │   ├── DockIndicator_PaneDiamond_Top.bmp
│   │   │   │   │   ├── DockIndicator_PanelBottom.bmp
│   │   │   │   │   ├── DockIndicator_PanelBottom_Active.bmp
│   │   │   │   │   ├── DockIndicator_PanelFill.bmp
│   │   │   │   │   ├── DockIndicator_PanelFill_Active.bmp
│   │   │   │   │   ├── DockIndicator_PanelLeft.bmp
│   │   │   │   │   ├── DockIndicator_PanelLeft_Active.bmp
│   │   │   │   │   ├── DockIndicator_PanelRight.bmp
│   │   │   │   │   ├── DockIndicator_PanelRight_Active.bmp
│   │   │   │   │   ├── DockIndicator_PanelTop.bmp
│   │   │   │   │   ├── DockIndicator_PanelTop_Active.bmp
│   │   │   │   │   ├── DockPane_AutoHide.bmp
│   │   │   │   │   ├── DockPane_Close.bmp
│   │   │   │   │   ├── DockPane_Dock.bmp
│   │   │   │   │   ├── DockPane_Option.bmp
│   │   │   │   │   ├── DockPane_OptionOverflow.bmp
│   │   │   │   │   └── Dockindicator_PaneDiamond_Fill.bmp
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Resources1.Designer.cs
│   │   │   │   ├── SplitterBase.cs
│   │   │   │   ├── Strings.Designer.cs
│   │   │   │   ├── Strings.resx
│   │   │   │   ├── VS2005AutoHideStrip.cs
│   │   │   │   ├── VS2005DockPaneCaption.cs
│   │   │   │   ├── VS2005DockPaneStrip.cs
│   │   │   │   ├── VisibleNestedPaneCollection.cs
│   │   │   │   └── Win32
│   │   │   │       ├── Enums.cs
│   │   │   │       └── NativeMethods.cs
│   │   │   ├── DrowDownTree
│   │   │   │   ├── DefaultTreeNode.cs
│   │   │   │   ├── EmptyTreeNode.cs
│   │   │   │   ├── TXTreeComboBox.cs
│   │   │   │   ├── TreeComboBoxContainer.cs
│   │   │   │   ├── TreeComboBoxContainer.resx
│   │   │   │   ├── TreeNodeEventArgs.cs
│   │   │   │   └── TreeNodeEx.cs
│   │   │   ├── MultiselectComboBox
│   │   │   │   ├── CheckBoxProperties.cs
│   │   │   │   ├── GripBounds.cs
│   │   │   │   ├── MultiselectComboBox.cs
│   │   │   │   ├── MultiselectComboBox.designer.cs
│   │   │   │   ├── MultiselectComboBoxItem.cs
│   │   │   │   ├── MultiselectComboBoxItemList.cs
│   │   │   │   ├── MultiselectComboBoxListControl.cs
│   │   │   │   ├── MultiselectComboBoxListControlContainer.cs
│   │   │   │   ├── Popup.cs
│   │   │   │   ├── Popup.designer.cs
│   │   │   │   ├── PopupComboBox.cs
│   │   │   │   ├── PopupComboBox.designer.cs
│   │   │   │   ├── Selection
│   │   │   │   │   ├── ListSelection.cs
│   │   │   │   │   └── ObjectSelection.cs
│   │   │   │   └── TXPopupComboBox.cs
│   │   │   ├── TXButton
│   │   │   │   └── TXButton.cs
│   │   │   ├── TXCheckBox
│   │   │   │   └── TXCheckBox.cs
│   │   │   ├── TXComboBox
│   │   │   │   └── TXComboBox.cs
│   │   │   ├── TXDateTimePicker
│   │   │   │   └── TXDateTimePicker.cs
│   │   │   ├── TXGroupBox
│   │   │   │   └── TXGroupBox.cs
│   │   │   ├── TXHtmlEditor
│   │   │   │   ├── TXHtmlEditor.cs
│   │   │   │   ├── TXHtmlEditor.designer.cs
│   │   │   │   ├── TXHtmlEditor.resx
│   │   │   │   ├── frmAddImage.cs
│   │   │   │   ├── frmAddImage.designer.cs
│   │   │   │   ├── frmAddImage.resx
│   │   │   │   ├── frmPreview.cs
│   │   │   │   ├── frmPreview.designer.cs
│   │   │   │   ├── frmPreview.resx
│   │   │   │   ├── frmSourceCode.cs
│   │   │   │   ├── frmSourceCode.designer.cs
│   │   │   │   └── frmSourceCode.resx
│   │   │   ├── TXListView
│   │   │   │   └── TXListView.cs
│   │   │   ├── TXMonthCalendar
│   │   │   │   ├── AlignControl.cs
│   │   │   │   ├── AlignControl.resx
│   │   │   │   ├── AlignEditor.cs
│   │   │   │   ├── DateItem.cs
│   │   │   │   ├── DateItemCollection.cs
│   │   │   │   ├── DateItemCollectionEditor.cs
│   │   │   │   ├── Day.cs
│   │   │   │   ├── Footer.cs
│   │   │   │   ├── GlobalHook.cs
│   │   │   │   ├── Header.cs
│   │   │   │   ├── ImageListPanel.cs
│   │   │   │   ├── ImageListPanel.resx
│   │   │   │   ├── ImageMapEditor.cs
│   │   │   │   ├── Images
│   │   │   │   │   ├── prev_month_vs.bmp
│   │   │   │   │   ├── prev_year.bmp
│   │   │   │   │   ├── prev_year_disabled.bmp
│   │   │   │   │   └── prev_year_vs.bmp
│   │   │   │   ├── Month.cs
│   │   │   │   ├── MonthCalendar.cs
│   │   │   │   ├── MonthCalendar.resx
│   │   │   │   ├── NativeMethods.cs
│   │   │   │   ├── RoomRate.cs
│   │   │   │   ├── SelectedDatesCollection.cs
│   │   │   │   ├── SelectionArea.cs
│   │   │   │   ├── Weekday.cs
│   │   │   │   └── Weeknumber.cs
│   │   │   ├── TXPager
│   │   │   │   ├── PageEventArgs.cs
│   │   │   │   ├── TXPager.cs
│   │   │   │   └── TXPager.resx
│   │   │   ├── TXPander
│   │   │   │   ├── Renderer
│   │   │   │   │   ├── BseColorTable.cs
│   │   │   │   │   ├── BseRenderer.cs
│   │   │   │   │   ├── ColorTableBlack.cs
│   │   │   │   │   ├── ColorTableBlue.cs
│   │   │   │   │   ├── Office2007BlackColorTable.cs
│   │   │   │   │   ├── Office2007BlueColorTable.cs
│   │   │   │   │   ├── Office2007Renderer.cs
│   │   │   │   │   ├── Office2007SilverColorTable.cs
│   │   │   │   │   ├── OfficeColorTable.cs
│   │   │   │   │   └── ProfessionalColorTable.cs
│   │   │   │   └── XPander
│   │   │   │       ├── BasePanel.cs
│   │   │   │       ├── CaptionStyle.cs
│   │   │   │       ├── ColorScheme.cs
│   │   │   │       ├── ColorSchemeChangeEventArgs.cs
│   │   │   │       ├── Constants.cs
│   │   │   │       ├── CustomColors.cs
│   │   │   │       ├── CustomPanelColors.cs
│   │   │   │       ├── CustomXPanderPanelColors.cs
│   │   │   │       ├── DisplayInformation.cs
│   │   │   │       ├── HoverState.cs
│   │   │   │       ├── HoverStateChangeEventArgs.cs
│   │   │   │       ├── IPanel.cs
│   │   │   │       ├── Panel.cs
│   │   │   │       ├── Panel.designer.cs
│   │   │   │       ├── Panel.resx
│   │   │   │       ├── PanelColors.cs
│   │   │   │       ├── PanelColorsBlack.cs
│   │   │   │       ├── PanelColorsBlue.cs
│   │   │   │       ├── PanelColorsBse.cs
│   │   │   │       ├── PanelColorsOffice.cs
│   │   │   │       ├── PanelColorsOffice2007Black.cs
│   │   │   │       ├── PanelColorsOffice2007Blue.cs
│   │   │   │       ├── PanelColorsOffice2007Silver.cs
│   │   │   │       ├── PanelColorsRed.cs
│   │   │   │       ├── PanelSettingsManager.cs
│   │   │   │       ├── PanelStyle.cs
│   │   │   │       ├── PanelStyleChangeEventArgs.cs
│   │   │   │       ├── UseAntiAlias.cs
│   │   │   │       ├── UseClearTypeGridFit.cs
│   │   │   │       ├── XPanderPanel.Designer.cs
│   │   │   │       ├── XPanderPanel.cs
│   │   │   │       ├── XPanderPanel.resx
│   │   │   │       ├── XPanderPanelList.Designer.cs
│   │   │   │       ├── XPanderPanelList.cs
│   │   │   │       ├── XPanderPanelList.resx
│   │   │   │       └── XPanderStateChangeEventArgs.cs
│   │   │   ├── TXPanel
│   │   │   │   └── TXPanel.cs
│   │   │   ├── TXRadioButton
│   │   │   │   └── TXRadioButton.cs
│   │   │   ├── TXRangeValue
│   │   │   │   ├── RangeValueHeader.cs
│   │   │   │   ├── RangeValueItem.cs
│   │   │   │   ├── TXRangeValue.Designer.cs
│   │   │   │   ├── TXRangeValue.cs
│   │   │   │   └── TXRangeValue.resx
│   │   │   ├── TXScrollBar
│   │   │   │   └── TXScrollBar.cs
│   │   │   ├── TXTabControl
│   │   │   │   ├── TXTabControl.cs
│   │   │   │   └── UpDownButtonPaintEventArgs.cs
│   │   │   ├── TXTableLayoutPanel
│   │   │   │   └── TXTableLayoutPanel.cs
│   │   │   ├── TXTextBox
│   │   │   │   ├── TXTextBox.cs
│   │   │   │   └── TXTextBox.resx
│   │   │   ├── TXToolBar
│   │   │   │   ├── TXToolBar.Designer.cs
│   │   │   │   ├── TXToolBar.cs
│   │   │   │   ├── TXToolBar.resx
│   │   │   │   └── TXToolBarEventArgs.cs
│   │   │   ├── TXToolStrip
│   │   │   │   ├── TXContextMenuStrip.cs
│   │   │   │   ├── TXMenuStrip.cs
│   │   │   │   ├── TXStatusStrip.cs
│   │   │   │   ├── TXToolStrip.cs
│   │   │   │   └── TXToolStripRenderer.cs
│   │   │   ├── TXTreeComboBox
│   │   │   │   ├── TXTreeComboBox.cs
│   │   │   │   └── TXTreeComboBox.resx
│   │   │   ├── TemplateListView
│   │   │   │   ├── ListViewSorter.cs
│   │   │   │   ├── SubItemEndEditingEventArgs.cs
│   │   │   │   ├── SubItemEventArgs.cs
│   │   │   │   ├── TemplateColumnHeader.cs
│   │   │   │   ├── TemplateColumnHeaderCollection.cs
│   │   │   │   ├── TemplateListView.cs
│   │   │   │   └── TemplateListView.resx
│   │   │   ├── ThumbnailView
│   │   │   │   ├── ThumbnailView.cs
│   │   │   │   └── ThumbnailView.resx
│   │   │   └── TreeListView
│   │   │       ├── CheckBoxesTypes.cs
│   │   │       ├── CheckDirection.cs
│   │   │       ├── EditItemInformations.cs
│   │   │       ├── ITreeListViewItemComparer.cs
│   │   │       ├── SelectedTreeListViewItemCollection.cs
│   │   │       ├── TreeListView.cs
│   │   │       ├── TreeListView.resx
│   │   │       ├── TreeListViewAction.cs
│   │   │       ├── TreeListViewEventArgs.cs
│   │   │       ├── TreeListViewExpandMethod.cs
│   │   │       ├── TreeListViewItem.cs
│   │   │       ├── TreeListViewItemBoundsPortion.cs
│   │   │       ├── TreeListViewItemCollection.cs
│   │   │       ├── TreeListViewLabelEditEventArgs.cs
│   │   │       └── TreeListViewSubItemEdit.cs
│   │   ├── Excel
│   │   │   ├── Attributes
│   │   │   │   ├── DefaultSheetAttribute.cs
│   │   │   │   ├── FromCellAttribute.cs
│   │   │   │   ├── FromRangeAttribute.cs
│   │   │   │   ├── ToCellAttribute.cs
│   │   │   │   ├── ToDynamicRangeAttribute.cs
│   │   │   │   ├── ToRangeAttribute.cs
│   │   │   │   └── UseSheetAttribute.cs
│   │   │   ├── Category.cs
│   │   │   ├── ExcelException.cs
│   │   │   ├── ExcelManager.cs
│   │   │   └── ExcelMapper.cs
│   │   ├── Forms
│   │   │   ├── BaseForm
│   │   │   │   ├── BaseForm.ControlBox.cs
│   │   │   │   ├── BaseForm.Extend.cs
│   │   │   │   ├── BaseForm.NonModalWaitingBox.cs
│   │   │   │   ├── BaseForm.Render.cs
│   │   │   │   ├── BaseForm.cs
│   │   │   │   ├── BaseForm.resx
│   │   │   │   ├── FormControlBoxRender.cs
│   │   │   │   └── FormRender.cs
│   │   │   ├── ErrorBox
│   │   │   │   ├── frmErrorBox.cs
│   │   │   │   ├── frmErrorBox.designer.cs
│   │   │   │   └── frmErrorBox.resx
│   │   │   ├── FormEntity
│   │   │   │   ├── FormInfoEntity.cs
│   │   │   │   ├── FormInfoEntity.designer.cs
│   │   │   │   ├── FormInfoListEntity.cs
│   │   │   │   ├── FormInfoListEntity.designer.cs
│   │   │   │   ├── FormInfoListEntity.resx
│   │   │   │   ├── FormListEntity.cs
│   │   │   │   ├── FormListEntity.designer.cs
│   │   │   │   └── FormListEntity.resx
│   │   │   ├── MainForm
│   │   │   │   ├── BtnEventArgs.cs
│   │   │   │   ├── MainForm.cs
│   │   │   │   ├── frmSkinManager.cs
│   │   │   │   ├── frmSkinManager.designer.cs
│   │   │   │   └── frmSkinManager.resx
│   │   │   ├── MessageBox
│   │   │   │   ├── TXMessageBox.cs
│   │   │   │   ├── TXMessageBox.designer.cs
│   │   │   │   ├── TXMessageBox.resx
│   │   │   │   └── TXMessageBoxExtensions.cs
│   │   │   ├── PopBox
│   │   │   │   ├── PopForm.Designer.cs
│   │   │   │   ├── PopForm.cs
│   │   │   │   └── PopForm.resx
│   │   │   └── WaitingBox
│   │   │       ├── TXWaitingBox.cs
│   │   │       ├── TXWaitingBox.designer.cs
│   │   │       ├── TXWaitingBox.resx
│   │   │       └── WaitWindow.cs
│   │   ├── Lib
│   │   │   ├── GMap.NET.Core.dll
│   │   │   ├── GMap.NET.WindowsForms.dll
│   │   │   ├── Mono.Data.SqliteClient.dll
│   │   │   ├── MySql.Data.dll
│   │   │   ├── System.Data.SQLite.DLL
│   │   │   └── TX.Framework.dll
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   └── Resources.resx
│   │   ├── Resources
│   │   │   ├── 1312941478_old-view-refresh.png
│   │   │   ├── 1312954756_Search.png
│   │   │   ├── 1347776853_attention3_16x16.gif
│   │   │   ├── 1347777508_16-message-warn.png
│   │   │   ├── 1348579722_download.png
│   │   │   ├── BM_dropdown.bmp
│   │   │   ├── Collapse.png
│   │   │   ├── Expand.png
│   │   │   ├── add.png
│   │   │   ├── bg01.jpg
│   │   │   ├── bg02.jpg
│   │   │   ├── bg03.jpg
│   │   │   ├── bg04.jpg
│   │   │   ├── bg05.jpg
│   │   │   ├── bg06.jpg
│   │   │   ├── calendar_blue.png
│   │   │   ├── check.png
│   │   │   ├── chevrondown.png
│   │   │   ├── chevronleft.png
│   │   │   ├── chevronright.png
│   │   │   ├── chevronup.png
│   │   │   ├── closepanel.png
│   │   │   ├── code.png
│   │   │   ├── collapse.jpg
│   │   │   ├── collapse_h.jpg
│   │   │   ├── delete.gif
│   │   │   ├── document_preview_archive.png
│   │   │   ├── edit.png
│   │   │   ├── error.png
│   │   │   ├── excel.png
│   │   │   ├── expand.jpg
│   │   │   ├── expand_h.jpg
│   │   │   ├── goto.png
│   │   │   ├── help.png
│   │   │   ├── info.png
│   │   │   ├── load2 (1).gif
│   │   │   ├── load2 (2).gif
│   │   │   ├── load2 (4).gif
│   │   │   ├── load2.gif
│   │   │   ├── loader (1).gif
│   │   │   ├── loader (10).gif
│   │   │   ├── loader (11).gif
│   │   │   ├── loader (12).gif
│   │   │   ├── loader (13).gif
│   │   │   ├── loader (2).gif
│   │   │   ├── loader (3).gif
│   │   │   ├── loader (4).gif
│   │   │   ├── loader (5).gif
│   │   │   ├── loader (6).gif
│   │   │   ├── loader (7).gif
│   │   │   ├── loader (8).gif
│   │   │   ├── loader (9).gif
│   │   │   ├── loader(0).gif
│   │   │   ├── logo.ico
│   │   │   ├── logo1.png
│   │   │   ├── logo2.png
│   │   │   ├── logo3.png
│   │   │   ├── logos.png
│   │   │   ├── naruto.png
│   │   │   ├── question.png
│   │   │   ├── refresh.png
│   │   │   ├── shape_group.png
│   │   │   ├── skin.png
│   │   │   ├── the_pictures_icon.png
│   │   │   └── warning.png
│   │   ├── TX.Framework.WindowUI.csproj
│   │   ├── TX.Framework.WindowUI.csproj.vspscc
│   │   ├── TX.Framework.WindowUI.sln
│   │   ├── TX.Framework.WindowUI.suo
│   │   ├── TX.Framework.WindowUI.v12.suo
│   │   ├── bin
│   │   │   └── x86
│   │   │       └── Debug
│   │   │           ├── Config
│   │   │           │   ├── Skin
│   │   │           │   │   ├── BlueSea.config
│   │   │           │   │   ├── KissOfAngel.config
│   │   │           │   │   ├── NoFlower.config
│   │   │           │   │   ├── SunsetRed.config
│   │   │           │   │   └── bg
│   │   │           │   │       ├── bg01.jpg
│   │   │           │   │       ├── bg02.jpg
│   │   │           │   │       ├── bg03.jpg
│   │   │           │   │       ├── bg04.jpg
│   │   │           │   │       ├── bg05.jpg
│   │   │           │   │       └── bg06.jpg
│   │   │           │   ├── Skin.config
│   │   │           │   └── Skin.ini
│   │   │           ├── TX.Framework.WindowUI.dll
│   │   │           ├── TX.Framework.WindowUI.pdb
│   │   │           └── TX.Framework.dll
│   │   └── obj
│   │       ├── Debug
│   │       │   ├── DesignTimeResolveAssemblyReferences.cache
│   │       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │   ├── GenerateResource.read.1.tlog
│   │       │   ├── GenerateResource.write.1.tlog
│   │       │   ├── ResolveAssemblyReference.cache
│   │       │   ├── TX.Framework.WindowUI.Controls.AlignControl.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.Docking.Resources.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.Docking.Strings.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.ImageListPanel.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.MonthCalendar.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.Panel.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TXHtmlEditor.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TXPager.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TXRangeValue.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TXTextBox.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TXToolBar.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TemplateListView.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.ThumbnailView.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TreeComboBox.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TreeComboBoxContainer.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TreeListView.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.XPanderPanel.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.XPanderPanelList.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.frmAddImage.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.frmPreview.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.frmSourceCode.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.BaseForm.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.FormInfoListEntity.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.FormListEntity.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.PopForm.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.TXMessageBox.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.TXWaitingBox.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.frmErrorBox.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.frmSkinManager.resources
│   │       │   ├── TX.Framework.WindowUI.Properties.Resources.resources
│   │       │   ├── TX.Framework.WindowUI.csproj.FileListAbsolute.txt
│   │       │   ├── TX.Framework.WindowUI.csproj.GenerateResource.Cache
│   │       │   ├── TX.Framework.WindowUI.dll
│   │       │   ├── TX.Framework.WindowUI.pdb
│   │       │   └── TempPE
│   │       │       ├── Controls.Docking.Resources1.Designer.cs.dll
│   │       │       ├── Controls.Docking.Strings.Designer.cs.dll
│   │       │       └── Properties.Resources.Designer.cs.dll
│   │       ├── Release
│   │       │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │       │   ├── GenerateResource.read.1.tlog
│   │       │   ├── GenerateResource.write.1.tlog
│   │       │   ├── ResolveAssemblyReference.cache
│   │       │   ├── TX.Framework.WindowUI.Controls.AlignControl.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.Docking.Resources.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.Docking.Strings.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.ImageListPanel.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.MonthCalendar.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.Panel.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TXHtmlEditor.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TXPager.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TXRangeValue.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TXTextBox.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TXToolBar.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TemplateListView.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.ThumbnailView.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TreeComboBox.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TreeComboBoxContainer.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.TreeListView.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.XPanderPanel.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.XPanderPanelList.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.frmAddImage.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.frmPreview.resources
│   │       │   ├── TX.Framework.WindowUI.Controls.frmSourceCode.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.BaseForm.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.FormInfoListEntity.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.FormListEntity.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.PopForm.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.TXMessageBox.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.TXWaitingBox.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.frmErrorBox.resources
│   │       │   ├── TX.Framework.WindowUI.Forms.frmSkinManager.resources
│   │       │   ├── TX.Framework.WindowUI.Properties.Resources.resources
│   │       │   ├── TX.Framework.WindowUI.csproj.FileListAbsolute.txt
│   │       │   ├── TX.Framework.WindowUI.dll
│   │       │   ├── TX.Framework.WindowUI.pdb
│   │       │   └── TempPE
│   │       │       ├── Controls.Docking.Resources1.Designer.cs.dll
│   │       │       ├── Controls.Docking.Strings.Designer.cs.dll
│   │       │       └── Properties.Resources.Designer.cs.dll
│   │       └── x86
│   │           ├── Debug
│   │           │   ├── DesignTimeResolveAssemblyReferences.cache
│   │           │   ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           │   ├── GenerateResource.read.1.tlog
│   │           │   ├── GenerateResource.write.1.tlog
│   │           │   ├── ResolveAssemblyReference.cache
│   │           │   ├── TX.Framework.WindowUI.Controls.AlignControl.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.Docking.Resources.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.Docking.Strings.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.ImageListPanel.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.MonthCalendar.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.Panel.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.TXHtmlEditor.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.TXPager.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.TXRangeValue.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.TXTextBox.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.TXToolBar.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.TemplateListView.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.ThumbnailView.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.TreeComboBox.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.TreeComboBoxContainer.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.TreeListView.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.XPanderPanel.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.XPanderPanelList.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.frmAddImage.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.frmPreview.resources
│   │           │   ├── TX.Framework.WindowUI.Controls.frmSourceCode.resources
│   │           │   ├── TX.Framework.WindowUI.Forms.BaseForm.resources
│   │           │   ├── TX.Framework.WindowUI.Forms.FormInfoListEntity.resources
│   │           │   ├── TX.Framework.WindowUI.Forms.FormListEntity.resources
│   │           │   ├── TX.Framework.WindowUI.Forms.PopForm.resources
│   │           │   ├── TX.Framework.WindowUI.Forms.TXMessageBox.resources
│   │           │   ├── TX.Framework.WindowUI.Forms.TXWaitingBox.resources
│   │           │   ├── TX.Framework.WindowUI.Forms.frmErrorBox.resources
│   │           │   ├── TX.Framework.WindowUI.Forms.frmSkinManager.resources
│   │           │   ├── TX.Framework.WindowUI.Properties.Resources.resources
│   │           │   ├── TX.Framework.WindowUI.csproj.FileListAbsolute.txt
│   │           │   ├── TX.Framework.WindowUI.csproj.GenerateResource.Cache
│   │           │   ├── TX.Framework.WindowUI.csprojResolveAssemblyReference.cache
│   │           │   ├── TX.Framework.WindowUI.dll
│   │           │   ├── TX.Framework.WindowUI.pdb
│   │           │   └── TempPE
│   │           │       ├── Controls.Docking.Resources1.Designer.cs.dll
│   │           │       ├── Controls.Docking.Strings.Designer.cs.dll
│   │           │       └── Properties.Resources.Designer.cs.dll
│   │           └── Release
│   │               ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │               ├── GenerateResource.read.1.tlog
│   │               ├── GenerateResource.write.1.tlog
│   │               ├── ResolveAssemblyReference.cache
│   │               ├── TX.Framework.WindowUI.Controls.AlignControl.resources
│   │               ├── TX.Framework.WindowUI.Controls.Docking.Resources.resources
│   │               ├── TX.Framework.WindowUI.Controls.Docking.Strings.resources
│   │               ├── TX.Framework.WindowUI.Controls.ImageListPanel.resources
│   │               ├── TX.Framework.WindowUI.Controls.MonthCalendar.resources
│   │               ├── TX.Framework.WindowUI.Controls.Panel.resources
│   │               ├── TX.Framework.WindowUI.Controls.TXHtmlEditor.resources
│   │               ├── TX.Framework.WindowUI.Controls.TXPager.resources
│   │               ├── TX.Framework.WindowUI.Controls.TXRangeValue.resources
│   │               ├── TX.Framework.WindowUI.Controls.TXTextBox.resources
│   │               ├── TX.Framework.WindowUI.Controls.TXToolBar.resources
│   │               ├── TX.Framework.WindowUI.Controls.TemplateListView.resources
│   │               ├── TX.Framework.WindowUI.Controls.ThumbnailView.resources
│   │               ├── TX.Framework.WindowUI.Controls.TreeComboBox.resources
│   │               ├── TX.Framework.WindowUI.Controls.TreeComboBoxContainer.resources
│   │               ├── TX.Framework.WindowUI.Controls.TreeListView.resources
│   │               ├── TX.Framework.WindowUI.Controls.XPanderPanel.resources
│   │               ├── TX.Framework.WindowUI.Controls.XPanderPanelList.resources
│   │               ├── TX.Framework.WindowUI.Controls.frmAddImage.resources
│   │               ├── TX.Framework.WindowUI.Controls.frmPreview.resources
│   │               ├── TX.Framework.WindowUI.Controls.frmSourceCode.resources
│   │               ├── TX.Framework.WindowUI.Forms.BaseForm.resources
│   │               ├── TX.Framework.WindowUI.Forms.FormInfoListEntity.resources
│   │               ├── TX.Framework.WindowUI.Forms.FormListEntity.resources
│   │               ├── TX.Framework.WindowUI.Forms.PopForm.resources
│   │               ├── TX.Framework.WindowUI.Forms.TXMessageBox.resources
│   │               ├── TX.Framework.WindowUI.Forms.TXWaitingBox.resources
│   │               ├── TX.Framework.WindowUI.Forms.frmErrorBox.resources
│   │               ├── TX.Framework.WindowUI.Forms.frmSkinManager.resources
│   │               ├── TX.Framework.WindowUI.Properties.Resources.resources
│   │               ├── TX.Framework.WindowUI.csproj.FileListAbsolute.txt
│   │               ├── TX.Framework.WindowUI.dll
│   │               ├── TX.Framework.WindowUI.pdb
│   │               └── TempPE
│   │                   ├── Controls.Docking.Resources1.Designer.cs.dll
│   │                   ├── Controls.Docking.Strings.Designer.cs.dll
│   │                   └── Properties.Resources.Designer.cs.dll
│   ├── TX.Framework.WindowUI.sln
│   ├── TX.Framework.WindowUI.suo
│   ├── TX.Framework.WindowUI.v12.suo
│   └── WindowsTest
│       ├── Program.cs
│       ├── Properties
│       │   ├── AssemblyInfo.cs
│       │   ├── Resources.Designer.cs
│       │   ├── Resources.resx
│       │   ├── Settings.Designer.cs
│       │   └── Settings.settings
│       ├── TestData.cs
│       ├── WindowsTest.csproj
│       ├── app.config
│       ├── bin
│       │   └── Debug
│       │       ├── Common.Logging.dll
│       │       ├── Config
│       │       │   ├── Skin
│       │       │   │   ├── BlueSea.config
│       │       │   │   ├── KissOfAngel.config
│       │       │   │   ├── NoFlower.config
│       │       │   │   ├── SunsetRed.config
│       │       │   │   └── bg
│       │       │   │       ├── bg01.jpg
│       │       │   │       ├── bg02.jpg
│       │       │   │       ├── bg03.jpg
│       │       │   │       ├── bg04.jpg
│       │       │   │       ├── bg05.jpg
│       │       │   │       └── bg06.jpg
│       │       │   ├── Skin.config
│       │       │   └── Skin.ini
│       │       ├── EntityFramework.dll
│       │       ├── EntityFramework.xml
│       │       ├── Microsoft.Office.Interop.Excel.dll
│       │       ├── Microsoft.Office.Interop.Excel.xml
│       │       ├── Microsoft.Practices.EnterpriseLibrary.Caching.dll
│       │       ├── Microsoft.Practices.EnterpriseLibrary.Caching.xml
│       │       ├── Microsoft.Practices.EnterpriseLibrary.Common.dll
│       │       ├── Microsoft.Practices.EnterpriseLibrary.Common.xml
│       │       ├── Microsoft.Practices.EnterpriseLibrary.Validation.dll
│       │       ├── Microsoft.Practices.EnterpriseLibrary.Validation.xml
│       │       ├── Microsoft.Practices.ServiceLocation.dll
│       │       ├── Microsoft.Practices.ServiceLocation.xml
│       │       ├── Microsoft.Practices.Unity.Configuration.dll
│       │       ├── Microsoft.Practices.Unity.Configuration.xml
│       │       ├── Microsoft.Practices.Unity.Interception.dll
│       │       ├── Microsoft.Practices.Unity.Interception.xml
│       │       ├── Microsoft.Practices.Unity.dll
│       │       ├── Microsoft.Practices.Unity.xml
│       │       ├── Microsoft.Vbe.Interop.dll
│       │       ├── NVelocity.dll
│       │       ├── NVelocity.xml
│       │       ├── Spring.Core.dll
│       │       ├── Spring.Core.xml
│       │       ├── TX.Framework.WindowUI.dll
│       │       ├── TX.Framework.WindowUI.pdb
│       │       ├── TX.Framework.dll
│       │       ├── WindowsTest.exe
│       │       ├── WindowsTest.exe.config
│       │       ├── WindowsTest.pdb
│       │       ├── WindowsTest.vshost.exe
│       │       ├── WindowsTest.vshost.exe.config
│       │       ├── WindowsTest.vshost.exe.manifest
│       │       ├── log4net.dll
│       │       ├── log4net.xml
│       │       ├── office.dll
│       │       └── office.xml
│       ├── frmList.Designer.cs
│       ├── frmList.cs
│       ├── frmList.resx
│       ├── obj
│       │   └── x86
│       │       └── Debug
│       │           ├── DesignTimeResolveAssemblyReferences.cache
│       │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │           ├── TempPE
│       │           │   └── Properties.Resources.Designer.cs.dll
│       │           ├── WindowsTest.Properties.Resources.resources
│       │           ├── WindowsTest.csproj.FileListAbsolute.txt
│       │           ├── WindowsTest.csproj.GenerateResource.Cache
│       │           ├── WindowsTest.csprojResolveAssemblyReference.cache
│       │           ├── WindowsTest.exe
│       │           ├── WindowsTest.frmList.resources
│       │           ├── WindowsTest.pdb
│       │           └── WindowsTest.winMain.resources
│       ├── winMain.Designer.cs
│       ├── winMain.cs
│       └── winMain.resx
├── chatnews
│   ├── ChatNews.sln
│   └── chatnews
│       ├── ChatNews.csproj
│       ├── Program.cs
│       ├── Properties
│       │   └── AssemblyInfo.cs
│       ├── Util.cs
│       ├── app.config
│       ├── bin
│       │   ├── Debug
│       │   │   ├── ChatNews.exe
│       │   │   ├── ChatNews.exe.config
│       │   │   ├── ChatNews.pdb
│       │   │   ├── DBUtil.dll
│       │   │   ├── MySql.Data.dll
│       │   │   ├── Newtonsoft.Json.dll
│       │   │   ├── Newtonsoft.Json.xml
│       │   │   ├── Npgsql.dll
│       │   │   ├── System.Data.SQLite.dll
│       │   │   ├── System.Threading.Tasks.Extensions.dll
│       │   │   ├── websocket-sharp.dll
│       │   │   └── websocket-sharp.pdb
│       │   └── Release
│       ├── chat
│       │   ├── BlockQueue.cs
│       │   ├── Chat.cs
│       │   ├── Ext.cs
│       │   └── OnLineData.cs
│       ├── doc
│       │   └── init.sql
│       ├── lib
│       │   ├── DBUtil.dll
│       │   ├── MySql.Data.dll
│       │   ├── Newtonsoft.Json.dll
│       │   ├── Newtonsoft.Json.xml
│       │   ├── Npgsql.dll
│       │   ├── SQLite.Interop.dll
│       │   ├── System.Data.SQLite.dll
│       │   └── System.Threading.Tasks.Extensions.dll
│       ├── obj
│       │   └── Debug
│       │       ├── ChatNews.csproj.CopyComplete
│       │       ├── ChatNews.csproj.CoreCompileInputs.cache
│       │       ├── ChatNews.csproj.FileListAbsolute.txt
│       │       ├── ChatNews.csprojAssemblyReference.cache
│       │       ├── ChatNews.exe
│       │       ├── ChatNews.pdb
│       │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│       │       ├── TempPE
│       │       ├── chat.csproj.CopyComplete
│       │       ├── chat.csproj.CoreCompileInputs.cache
│       │       ├── chat.csproj.FileListAbsolute.txt
│       │       ├── chat.csprojAssemblyReference.cache
│       │       ├── chat.exe
│       │       ├── chat.pdb
│       │       └── ehat.csprojAssemblyReference.cache
│       ├── web
│       │   ├── css
│       │   │   ├── animate.css
│       │   │   └── chat.css
│       │   ├── forgetpwd.html
│       │   ├── img
│       │   │   ├── back.png
│       │   │   ├── icon.png
│       │   │   ├── user1.png
│       │   │   ├── user2.png
│       │   │   ├── user21.png
│       │   │   ├── user22.png
│       │   │   ├── user23.png
│       │   │   ├── user3.png
│       │   │   ├── user31.png
│       │   │   ├── user32.png
│       │   │   ├── user4.png
│       │   │   └── user5.png
│       │   ├── index.html
│       │   ├── js
│       │   │   ├── chat.js
│       │   │   ├── jquery-2.0.3.js
│       │   │   ├── layui-v2.4.5
│       │   │   │   ├── css
│       │   │   │   │   ├── layui.css
│       │   │   │   │   ├── layui.mobile.css
│       │   │   │   │   └── modules
│       │   │   │   │       ├── code.css
│       │   │   │   │       ├── laydate
│       │   │   │   │       │   └── default
│       │   │   │   │       │       └── laydate.css
│       │   │   │   │       └── layer
│       │   │   │   │           └── default
│       │   │   │   │               ├── icon-ext.png
│       │   │   │   │               ├── icon.png
│       │   │   │   │               ├── layer.css
│       │   │   │   │               ├── loading-0.gif
│       │   │   │   │               ├── loading-1.gif
│       │   │   │   │               └── loading-2.gif
│       │   │   │   ├── font
│       │   │   │   │   ├── iconfont.eot
│       │   │   │   │   ├── iconfont.svg
│       │   │   │   │   ├── iconfont.ttf
│       │   │   │   │   └── iconfont.woff
│       │   │   │   ├── images
│       │   │   │   │   └── face
│       │   │   │   │       ├── 0.gif
│       │   │   │   │       ├── 1.gif
│       │   │   │   │       ├── 10.gif
│       │   │   │   │       ├── 11.gif
│       │   │   │   │       ├── 12.gif
│       │   │   │   │       ├── 13.gif
│       │   │   │   │       ├── 14.gif
│       │   │   │   │       ├── 15.gif
│       │   │   │   │       ├── 16.gif
│       │   │   │   │       ├── 17.gif
│       │   │   │   │       ├── 18.gif
│       │   │   │   │       ├── 19.gif
│       │   │   │   │       ├── 2.gif
│       │   │   │   │       ├── 20.gif
│       │   │   │   │       ├── 21.gif
│       │   │   │   │       ├── 22.gif
│       │   │   │   │       ├── 23.gif
│       │   │   │   │       ├── 24.gif
│       │   │   │   │       ├── 25.gif
│       │   │   │   │       ├── 26.gif
│       │   │   │   │       ├── 27.gif
│       │   │   │   │       ├── 28.gif
│       │   │   │   │       ├── 29.gif
│       │   │   │   │       ├── 3.gif
│       │   │   │   │       ├── 30.gif
│       │   │   │   │       ├── 31.gif
│       │   │   │   │       ├── 32.gif
│       │   │   │   │       ├── 33.gif
│       │   │   │   │       ├── 34.gif
│       │   │   │   │       ├── 35.gif
│       │   │   │   │       ├── 36.gif
│       │   │   │   │       ├── 37.gif
│       │   │   │   │       ├── 38.gif
│       │   │   │   │       ├── 39.gif
│       │   │   │   │       ├── 4.gif
│       │   │   │   │       ├── 40.gif
│       │   │   │   │       ├── 41.gif
│       │   │   │   │       ├── 42.gif
│       │   │   │   │       ├── 43.gif
│       │   │   │   │       ├── 44.gif
│       │   │   │   │       ├── 45.gif
│       │   │   │   │       ├── 46.gif
│       │   │   │   │       ├── 47.gif
│       │   │   │   │       ├── 48.gif
│       │   │   │   │       ├── 49.gif
│       │   │   │   │       ├── 5.gif
│       │   │   │   │       ├── 50.gif
│       │   │   │   │       ├── 51.gif
│       │   │   │   │       ├── 52.gif
│       │   │   │   │       ├── 53.gif
│       │   │   │   │       ├── 54.gif
│       │   │   │   │       ├── 55.gif
│       │   │   │   │       ├── 56.gif
│       │   │   │   │       ├── 57.gif
│       │   │   │   │       ├── 58.gif
│       │   │   │   │       ├── 59.gif
│       │   │   │   │       ├── 6.gif
│       │   │   │   │       ├── 60.gif
│       │   │   │   │       ├── 61.gif
│       │   │   │   │       ├── 62.gif
│       │   │   │   │       ├── 63.gif
│       │   │   │   │       ├── 64.gif
│       │   │   │   │       ├── 65.gif
│       │   │   │   │       ├── 66.gif
│       │   │   │   │       ├── 67.gif
│       │   │   │   │       ├── 68.gif
│       │   │   │   │       ├── 69.gif
│       │   │   │   │       ├── 7.gif
│       │   │   │   │       ├── 70.gif
│       │   │   │   │       ├── 71.gif
│       │   │   │   │       ├── 8.gif
│       │   │   │   │       └── 9.gif
│       │   │   │   ├── lay
│       │   │   │   │   └── modules
│       │   │   │   │       ├── carousel.js
│       │   │   │   │       ├── code.js
│       │   │   │   │       ├── colorpicker.js
│       │   │   │   │       ├── element.js
│       │   │   │   │       ├── flow.js
│       │   │   │   │       ├── form.js
│       │   │   │   │       ├── jquery.js
│       │   │   │   │       ├── laydate.js
│       │   │   │   │       ├── layedit.js
│       │   │   │   │       ├── layer.js
│       │   │   │   │       ├── laypage.js
│       │   │   │   │       ├── laytpl.js
│       │   │   │   │       ├── mobile.js
│       │   │   │   │       ├── rate.js
│       │   │   │   │       ├── slider.js
│       │   │   │   │       ├── table.js
│       │   │   │   │       ├── tree.js
│       │   │   │   │       ├── upload.js
│       │   │   │   │       └── util.js
│       │   │   │   ├── layui.all.js
│       │   │   │   └── layui.js
│       │   │   └── test.js
│       │   ├── register.html
│       │   ├── test.html
│       │   ├── test2.html
│       │   ├── test3.html
│       │   ├── test4.html
│       │   └── test5.html
│       └── 说明.txt
├── datagrid案例
│   ├── MS DataGridView FAQ.doc
│   ├── MS DataGridView Samples
│   │   ├── Advanced Virtual Mode with Caching
│   │   │   ├── CS
│   │   │   │   ├── Advanced Virtual Mode with Caching
│   │   │   │   │   ├── Advanced Virtual Mode with Caching.csproj
│   │   │   │   │   ├── Form1.cs
│   │   │   │   │   ├── Properties
│   │   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   │   ├── Resources.resx
│   │   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   │   └── Settings.settings
│   │   │   │   │   ├── bin
│   │   │   │   │   │   ├── Debug
│   │   │   │   │   │   │   ├── Advanced Virtual Mode with Caching.exe
│   │   │   │   │   │   │   ├── Advanced Virtual Mode with Caching.pdb
│   │   │   │   │   │   │   └── Advanced Virtual Mode with Caching.vshost.exe
│   │   │   │   │   │   └── Release
│   │   │   │   │   └── obj
│   │   │   │   │       ├── Advanced Virtual Mode with Caching.csproj.FileList.txt
│   │   │   │   │       ├── Debug
│   │   │   │   │       │   ├── Advanced Virtual Mode with Caching.csproj.GenerateResource.Cache
│   │   │   │   │       │   ├── Advanced Virtual Mode with Caching.exe
│   │   │   │   │       │   ├── Advanced Virtual Mode with Caching.pdb
│   │   │   │   │       │   ├── Advanced_Virtual_Mode_with_Caching.Properties.Resources.resources
│   │   │   │   │       │   └── TempPE
│   │   │   │   │       └── Release
│   │   │   │   ├── Advanced Virtual Mode with Caching.sln
│   │   │   │   └── Advanced Virtual Mode with Caching.suo
│   │   │   └── VB
│   │   │       ├── Advanced Virtual Mode with Caching
│   │   │       │   ├── Advanced Virtual Mode with Caching.vbproj
│   │   │       │   ├── Form1.Designer.vb
│   │   │       │   ├── Form1.vb
│   │   │       │   ├── My Project
│   │   │       │   │   ├── Application.Designer.vb
│   │   │       │   │   ├── Application.myapp
│   │   │       │   │   ├── AssemblyInfo.vb
│   │   │       │   │   ├── Resources.Designer.vb
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Settings.Designer.vb
│   │   │       │   │   └── Settings.settings
│   │   │       │   ├── bin
│   │   │       │   │   ├── Debug
│   │   │       │   │   │   ├── Advanced Virtual Mode with Caching.exe
│   │   │       │   │   │   ├── Advanced Virtual Mode with Caching.pdb
│   │   │       │   │   │   ├── Advanced Virtual Mode with Caching.vshost.exe
│   │   │       │   │   │   └── Advanced Virtual Mode with Caching.xml
│   │   │       │   │   └── Release
│   │   │       │   └── obj
│   │   │       │       ├── Advanced Virtual Mode with Caching.vbproj.FileList.txt
│   │   │       │       ├── Debug
│   │   │       │       │   ├── Advanced Virtual Mode with Caching.exe
│   │   │       │       │   ├── Advanced Virtual Mode with Caching.pdb
│   │   │       │       │   ├── Advanced Virtual Mode with Caching.vbproj.GenerateResource.Cache
│   │   │       │       │   ├── Advanced Virtual Mode with Caching.xml
│   │   │       │       │   ├── Advanced_Virtual_Mode_with_Caching.Resources.resources
│   │   │       │       │   └── TempPE
│   │   │       │       │       └── My Project.Resources.Designer.vb.dll
│   │   │       │       └── Release
│   │   │       ├── Advanced Virtual Mode with Caching.sln
│   │   │       └── Advanced Virtual Mode with Caching.suo
│   │   ├── Custom Row Painting
│   │   │   ├── CS
│   │   │   │   ├── Custom Row Painting
│   │   │   │   │   ├── Custom Row Painting.csproj
│   │   │   │   │   ├── Form1.cs
│   │   │   │   │   ├── Properties
│   │   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   │   ├── Resources.resx
│   │   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   │   └── Settings.settings
│   │   │   │   │   ├── bin
│   │   │   │   │   │   ├── Debug
│   │   │   │   │   │   │   ├── Custom Row Painting.exe
│   │   │   │   │   │   │   ├── Custom Row Painting.pdb
│   │   │   │   │   │   │   └── Custom Row Painting.vshost.exe
│   │   │   │   │   │   └── Release
│   │   │   │   │   └── obj
│   │   │   │   │       ├── Custom Row Painting.csproj.FileList.txt
│   │   │   │   │       ├── Debug
│   │   │   │   │       │   ├── Custom Row Painting.csproj.GenerateResource.Cache
│   │   │   │   │       │   ├── Custom Row Painting.exe
│   │   │   │   │       │   ├── Custom Row Painting.pdb
│   │   │   │   │       │   ├── Custom_Row_Painting.Properties.Resources.resources
│   │   │   │   │       │   └── TempPE
│   │   │   │   │       └── Release
│   │   │   │   ├── Custom Row Painting.sln
│   │   │   │   └── Custom Row Painting.suo
│   │   │   └── VB
│   │   │       ├── Custom Row Painting
│   │   │       │   ├── Custom Row Painting.vbproj
│   │   │       │   ├── Form1.Designer.vb
│   │   │       │   ├── Form1.vb
│   │   │       │   ├── My Project
│   │   │       │   │   ├── Application.Designer.vb
│   │   │       │   │   ├── Application.myapp
│   │   │       │   │   ├── AssemblyInfo.vb
│   │   │       │   │   ├── Resources.Designer.vb
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Settings.Designer.vb
│   │   │       │   │   └── Settings.settings
│   │   │       │   ├── bin
│   │   │       │   │   ├── Debug
│   │   │       │   │   │   ├── Custom Row Painting.exe
│   │   │       │   │   │   ├── Custom Row Painting.pdb
│   │   │       │   │   │   ├── Custom Row Painting.vshost.exe
│   │   │       │   │   │   └── Custom Row Painting.xml
│   │   │       │   │   └── Release
│   │   │       │   └── obj
│   │   │       │       ├── Custom Row Painting.vbproj.FileList.txt
│   │   │       │       ├── Debug
│   │   │       │       │   ├── Custom Row Painting.exe
│   │   │       │       │   ├── Custom Row Painting.pdb
│   │   │       │       │   ├── Custom Row Painting.vbproj.GenerateResource.Cache
│   │   │       │       │   ├── Custom Row Painting.xml
│   │   │       │       │   ├── Custom_Row_Painting.Resources.resources
│   │   │       │       │   └── TempPE
│   │   │       │       │       └── My Project.Resources.Designer.vb.dll
│   │   │       │       └── Release
│   │   │       ├── Custom Row Painting.sln
│   │   │       └── Custom Row Painting.suo
│   │   ├── DataGridView Overview
│   │   │   ├── CS
│   │   │   │   ├── DataGridView
│   │   │   │   │   ├── CustomerForm.Designer.cs
│   │   │   │   │   ├── CustomerForm.cs
│   │   │   │   │   ├── CustomerForm.resx
│   │   │   │   │   ├── CustomerOrdersForm.Designer.cs
│   │   │   │   │   ├── CustomerOrdersForm.cs
│   │   │   │   │   ├── CustomerOrdersForm.resx
│   │   │   │   │   ├── DataGridView.csproj
│   │   │   │   │   ├── NorthwindCustomerOrders.Designer.cs
│   │   │   │   │   ├── NorthwindCustomerOrders.xml
│   │   │   │   │   ├── NorthwindCustomerOrders.xsc
│   │   │   │   │   ├── NorthwindCustomerOrders.xsd
│   │   │   │   │   ├── NorthwindCustomerOrders.xss
│   │   │   │   │   ├── Program.cs
│   │   │   │   │   └── Properties
│   │   │   │   │       ├── AssemblyInfo.cs
│   │   │   │   │       ├── Resources.Designer.cs
│   │   │   │   │       ├── Resources.resx
│   │   │   │   │       ├── Settings.Designer.cs
│   │   │   │   │       └── Settings.settings
│   │   │   │   └── DataGridView.sln
│   │   │   ├── VB
│   │   │   │   ├── DataGridView
│   │   │   │   │   ├── CustomerForm.Designer.vb
│   │   │   │   │   ├── CustomerForm.resx
│   │   │   │   │   ├── CustomerForm.vb
│   │   │   │   │   ├── CustomerOrdersForm.Designer.vb
│   │   │   │   │   ├── CustomerOrdersForm.resx
│   │   │   │   │   ├── CustomerOrdersForm.vb
│   │   │   │   │   ├── DataGridView.vbproj
│   │   │   │   │   ├── My Project
│   │   │   │   │   │   ├── AssemblyInfo.vb
│   │   │   │   │   │   ├── MyApplication.myapp
│   │   │   │   │   │   ├── MyApplication.vb
│   │   │   │   │   │   ├── MyEvents.vb
│   │   │   │   │   │   ├── MyResources.resx
│   │   │   │   │   │   ├── MyResources.vb
│   │   │   │   │   │   ├── MySettings.settings
│   │   │   │   │   │   ├── MySettings.vb
│   │   │   │   │   │   ├── Resources.Designer.vb
│   │   │   │   │   │   └── Resources.resx
│   │   │   │   │   ├── NorthwindCustomerOrders.Designer.vb
│   │   │   │   │   ├── NorthwindCustomerOrders.xml
│   │   │   │   │   ├── NorthwindCustomerOrders.xsc
│   │   │   │   │   ├── NorthwindCustomerOrders.xsd
│   │   │   │   │   ├── NorthwindCustomerOrders.xss
│   │   │   │   │   └── app.config
│   │   │   │   └── DataGridView.sln
│   │   │   └── jsl
│   │   │       ├── DataGridView
│   │   │       │   ├── App.ico
│   │   │       │   ├── AssemblyInfo.jsl
│   │   │       │   ├── CustomerForm.jsl
│   │   │       │   ├── CustomerForm.resx
│   │   │       │   ├── CustomerOrdersForm.jsl
│   │   │       │   ├── CustomerOrdersForm.resx
│   │   │       │   ├── DataGridView.vjsproj
│   │   │       │   ├── EntryPoint.jsl
│   │   │       │   ├── NorthwindCustomerOrders.Designer.jsl
│   │   │       │   ├── NorthwindCustomerOrders.xml
│   │   │       │   ├── NorthwindCustomerOrders.xsc
│   │   │       │   ├── NorthwindCustomerOrders.xsd
│   │   │       │   ├── NorthwindCustomerOrders.xss
│   │   │       │   └── Properties
│   │   │       │       ├── Resources.Designer.jsl
│   │   │       │       └── Resources.resx
│   │   │       └── DataGridView.sln
│   │   ├── DateTimePicker Custom Cell
│   │   │   ├── CS
│   │   │   │   ├── DateTimePicker Custom Cell
│   │   │   │   │   ├── DateTimePicker Custom Cell.csproj
│   │   │   │   │   ├── Form1.cs
│   │   │   │   │   ├── Properties
│   │   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   │   ├── Resources.resx
│   │   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   │   └── Settings.settings
│   │   │   │   │   ├── bin
│   │   │   │   │   │   ├── Debug
│   │   │   │   │   │   │   ├── DateTimePicker Custom Cell.exe
│   │   │   │   │   │   │   ├── DateTimePicker Custom Cell.pdb
│   │   │   │   │   │   │   └── DateTimePicker Custom Cell.vshost.exe
│   │   │   │   │   │   └── Release
│   │   │   │   │   └── obj
│   │   │   │   │       ├── DateTimePicker Custom Cell.csproj.FileList.txt
│   │   │   │   │       ├── Debug
│   │   │   │   │       │   ├── DateTimePicker Custom Cell.csproj.GenerateResource.Cache
│   │   │   │   │       │   ├── DateTimePicker Custom Cell.exe
│   │   │   │   │       │   ├── DateTimePicker Custom Cell.pdb
│   │   │   │   │       │   ├── DateTimePicker_Custom_Cell.Properties.Resources.resources
│   │   │   │   │       │   └── TempPE
│   │   │   │   │       └── Release
│   │   │   │   ├── DateTimePicker Custom Cell.sln
│   │   │   │   └── DateTimePicker Custom Cell.suo
│   │   │   └── VB
│   │   │       ├── DateTimePicker Custom Cell
│   │   │       │   ├── DateTimePicker Custom Cell.vbproj
│   │   │       │   ├── Form1.Designer.vb
│   │   │       │   ├── Form1.vb
│   │   │       │   ├── My Project
│   │   │       │   │   ├── Application.Designer.vb
│   │   │       │   │   ├── Application.myapp
│   │   │       │   │   ├── AssemblyInfo.vb
│   │   │       │   │   ├── Resources.Designer.vb
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Settings.Designer.vb
│   │   │       │   │   └── Settings.settings
│   │   │       │   ├── bin
│   │   │       │   │   ├── Debug
│   │   │       │   │   │   ├── DateTimePicker Custom Cell.exe
│   │   │       │   │   │   ├── DateTimePicker Custom Cell.pdb
│   │   │       │   │   │   ├── DateTimePicker Custom Cell.vshost.exe
│   │   │       │   │   │   └── DateTimePicker Custom Cell.xml
│   │   │       │   │   └── Release
│   │   │       │   └── obj
│   │   │       │       ├── DateTimePicker Custom Cell.vbproj.FileList.txt
│   │   │       │       ├── Debug
│   │   │       │       │   ├── DateTimePicker Custom Cell.exe
│   │   │       │       │   ├── DateTimePicker Custom Cell.pdb
│   │   │       │       │   ├── DateTimePicker Custom Cell.vbproj.GenerateResource.Cache
│   │   │       │       │   ├── DateTimePicker Custom Cell.xml
│   │   │       │       │   ├── DateTimePicker_Custom_Cell.Resources.resources
│   │   │       │       │   └── TempPE
│   │   │       │       │       └── My Project.Resources.Designer.vb.dll
│   │   │       │       └── Release
│   │   │       ├── DateTimePicker Custom Cell.sln
│   │   │       └── DateTimePicker Custom Cell.suo
│   │   ├── Disabled Button Cell
│   │   │   ├── CS
│   │   │   │   ├── Disabled Button Cell
│   │   │   │   │   ├── Disabled Button Cell.csproj
│   │   │   │   │   ├── Form1.cs
│   │   │   │   │   ├── Properties
│   │   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   │   ├── Resources.resx
│   │   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   │   └── Settings.settings
│   │   │   │   │   ├── bin
│   │   │   │   │   │   ├── Debug
│   │   │   │   │   │   │   ├── Disabled Button Cell.exe
│   │   │   │   │   │   │   ├── Disabled Button Cell.pdb
│   │   │   │   │   │   │   └── Disabled Button Cell.vshost.exe
│   │   │   │   │   │   └── Release
│   │   │   │   │   └── obj
│   │   │   │   │       ├── Debug
│   │   │   │   │       │   ├── Disabled Button Cell.csproj.GenerateResource.Cache
│   │   │   │   │       │   ├── Disabled Button Cell.exe
│   │   │   │   │       │   ├── Disabled Button Cell.pdb
│   │   │   │   │       │   ├── Disabled_Button_Cell.Properties.Resources.resources
│   │   │   │   │       │   └── TempPE
│   │   │   │   │       ├── Disabled Button Cell.csproj.FileList.txt
│   │   │   │   │       └── Release
│   │   │   │   ├── Disabled Button Cell.sln
│   │   │   │   └── Disabled Button Cell.suo
│   │   │   └── VB
│   │   │       ├── Disabled Button Cell
│   │   │       │   ├── Disabled Button Cell.vbproj
│   │   │       │   ├── Form1.Designer.vb
│   │   │       │   ├── Form1.vb
│   │   │       │   ├── My Project
│   │   │       │   │   ├── Application.Designer.vb
│   │   │       │   │   ├── Application.myapp
│   │   │       │   │   ├── AssemblyInfo.vb
│   │   │       │   │   ├── Resources.Designer.vb
│   │   │       │   │   ├── Resources.resx
│   │   │       │   │   ├── Settings.Designer.vb
│   │   │       │   │   └── Settings.settings
│   │   │       │   ├── bin
│   │   │       │   │   ├── Debug
│   │   │       │   │   │   ├── Disabled Button Cell.exe
│   │   │       │   │   │   ├── Disabled Button Cell.pdb
│   │   │       │   │   │   ├── Disabled Button Cell.vshost.exe
│   │   │       │   │   │   ├── Disabled Button Cell.xml
│   │   │       │   │   │   ├── Disabled Button Cell1.exe
│   │   │       │   │   │   ├── Disabled Button Cell1.pdb
│   │   │       │   │   │   ├── Disabled Button Cell1.vshost.exe
│   │   │       │   │   │   └── Disabled Button Cell1.xml
│   │   │       │   │   └── Release
│   │   │       │   └── obj
│   │   │       │       ├── Debug
│   │   │       │       │   ├── Disabled Button Cell.exe
│   │   │       │       │   ├── Disabled Button Cell.pdb
│   │   │       │       │   ├── Disabled Button Cell.vbproj.GenerateResource.Cache
│   │   │       │       │   ├── Disabled Button Cell.xml
│   │   │       │       │   ├── Disabled Button Cell1.exe
│   │   │       │       │   ├── Disabled Button Cell1.pdb
│   │   │       │       │   ├── Disabled Button Cell1.xml
│   │   │       │       │   ├── Disabled_Button_Cell.Resources.resources
│   │   │       │       │   └── TempPE
│   │   │       │       │       └── My Project.Resources.Designer.vb.dll
│   │   │       │       ├── Disabled Button Cell.vbproj.FileList.txt
│   │   │       │       ├── Disabled Button Cell1.vbproj.FileList.txt
│   │   │       │       └── Release
│   │   │       ├── Disabled Button Cell.sln
│   │   │       └── Disabled Button Cell.suo
│   │   ├── MaskedTextBox Custom Cell
│   │   │   └── CS
│   │   │       ├── DataGridViewCustomColumn
│   │   │       │   ├── AssemblyInfo.cs
│   │   │       │   ├── DataGridViewCustomColumn.csproj
│   │   │       │   ├── MaskedTextBoxCell.cs
│   │   │       │   ├── MaskedTextBoxColumn.cs
│   │   │       │   └── MaskedTextBoxEditingControl.cs
│   │   │       ├── DataGridViewCustomColumn.sln
│   │   │       └── DataGridViewCustomColumnTest
│   │   │           ├── AssemblyInfo.cs
│   │   │           ├── DataGridViewCustomColumnTest.csproj
│   │   │           ├── Form1.Designer.cs
│   │   │           ├── Form1.cs
│   │   │           ├── Form1.resx
│   │   │           ├── Program.cs
│   │   │           └── ZipCode.cs
│   │   ├── Sorting
│   │   │   ├── Custom Sorting Using the IComparer Interface
│   │   │   │   ├── CS
│   │   │   │   │   ├── Custom Sorting Using the IComparer Interface
│   │   │   │   │   │   ├── Custom Sorting Using the IComparer Interface.csproj
│   │   │   │   │   │   ├── Form1.cs
│   │   │   │   │   │   ├── Properties
│   │   │   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   │   │   ├── Resources.resx
│   │   │   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   │   │   └── Settings.settings
│   │   │   │   │   │   ├── bin
│   │   │   │   │   │   │   ├── Debug
│   │   │   │   │   │   │   │   ├── Custom Sorting Using the IComparer Interface.exe
│   │   │   │   │   │   │   │   ├── Custom Sorting Using the IComparer Interface.pdb
│   │   │   │   │   │   │   │   └── Custom Sorting Using the IComparer Interface.vshost.exe
│   │   │   │   │   │   │   └── Release
│   │   │   │   │   │   └── obj
│   │   │   │   │   │       ├── Custom Sorting Using the IComparer Interface.csproj.FileList.txt
│   │   │   │   │   │       ├── Debug
│   │   │   │   │   │       │   ├── Custom Sorting Using the IComparer Interface.csproj.GenerateResource.Cache
│   │   │   │   │   │       │   ├── Custom Sorting Using the IComparer Interface.exe
│   │   │   │   │   │       │   ├── Custom Sorting Using the IComparer Interface.pdb
│   │   │   │   │   │       │   ├── Custom_Sorting_Using_the_IComparer_Interface.Properties.Resources.resources
│   │   │   │   │   │       │   └── TempPE
│   │   │   │   │   │       └── Release
│   │   │   │   │   ├── Custom Sorting Using the IComparer Interface.sln
│   │   │   │   │   └── Custom Sorting Using the IComparer Interface.suo
│   │   │   │   └── VB
│   │   │   │       ├── Custom Sorting Using the IComparer Interface
│   │   │   │       │   ├── Custom Sorting Using the IComparer Interface.vbproj
│   │   │   │       │   ├── Form1.Designer.vb
│   │   │   │       │   ├── Form1.vb
│   │   │   │       │   ├── My Project
│   │   │   │       │   │   ├── Application.Designer.vb
│   │   │   │       │   │   ├── Application.myapp
│   │   │   │       │   │   ├── AssemblyInfo.vb
│   │   │   │       │   │   ├── Resources.Designer.vb
│   │   │   │       │   │   ├── Resources.resx
│   │   │   │       │   │   ├── Settings.Designer.vb
│   │   │   │       │   │   └── Settings.settings
│   │   │   │       │   ├── bin
│   │   │   │       │   │   ├── Debug
│   │   │   │       │   │   │   ├── Custom Sorting Using the IComparer Interface.exe
│   │   │   │       │   │   │   ├── Custom Sorting Using the IComparer Interface.pdb
│   │   │   │       │   │   │   ├── Custom Sorting Using the IComparer Interface.vshost.exe
│   │   │   │       │   │   │   └── Custom Sorting Using the IComparer Interface.xml
│   │   │   │       │   │   └── Release
│   │   │   │       │   └── obj
│   │   │   │       │       ├── Custom Sorting Using the IComparer Interface.vbproj.FileList.txt
│   │   │   │       │       ├── Debug
│   │   │   │       │       │   ├── Custom Sorting Using the IComparer Interface.exe
│   │   │   │       │       │   ├── Custom Sorting Using the IComparer Interface.pdb
│   │   │   │       │       │   ├── Custom Sorting Using the IComparer Interface.vbproj.GenerateResource.Cache
│   │   │   │       │       │   ├── Custom Sorting Using the IComparer Interface.xml
│   │   │   │       │       │   ├── Custom_Sorting_Using_the_IComparer_Interface.Resources.resources
│   │   │   │       │       │   └── TempPE
│   │   │   │       │       │       └── My Project.Resources.Designer.vb.dll
│   │   │   │       │       └── Release
│   │   │   │       ├── Custom Sorting Using the IComparer Interface.sln
│   │   │   │       └── Custom Sorting Using the IComparer Interface.suo
│   │   │   ├── Custom Sorting Using the SortCompare Event
│   │   │   │   ├── CS
│   │   │   │   │   ├── Custom Sorting Using the SortCompare Event
│   │   │   │   │   │   ├── Custom Sorting Using the SortCompare Event.csproj
│   │   │   │   │   │   ├── Form1.cs
│   │   │   │   │   │   ├── Properties
│   │   │   │   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   │   │   │   ├── Resources.Designer.cs
│   │   │   │   │   │   │   ├── Resources.resx
│   │   │   │   │   │   │   ├── Settings.Designer.cs
│   │   │   │   │   │   │   └── Settings.settings
│   │   │   │   │   │   └── bin
│   │   │   │   │   │       ├── Debug
│   │   │   │   │   │       │   └── Custom Sorting Using the SortCompare Event.exe
│   │   │   │   │   │       └── Release
│   │   │   │   │   ├── Custom Sorting Using the SortCompare Event.sln
│   │   │   │   │   └── Custom Sorting Using the SortCompare Event.suo
│   │   │   │   └── VB
│   │   │   │       ├── Custom Sorting Using the SortCompare Event
│   │   │   │       │   ├── Custom Sorting Using the SortCompare Event.vbproj
│   │   │   │       │   ├── Form1.Designer.vb
│   │   │   │       │   ├── Form1.vb
│   │   │   │       │   ├── My Project
│   │   │   │       │   │   ├── Application.Designer.vb
│   │   │   │       │   │   ├── Application.myapp
│   │   │   │       │   │   ├── AssemblyInfo.vb
│   │   │   │       │   │   ├── Resources.Designer.vb
│   │   │   │       │   │   ├── Resources.resx
│   │   │   │       │   │   ├── Settings.Designer.vb
│   │   │   │       │   │   └── Settings.settings
│   │   │   │       │   ├── bin
│   │   │   │       │   │   ├── Debug
│   │   │   │       │   │   │   ├── Custom Sorting Using the SortCompare Event.exe
│   │   │   │       │   │   │   ├── Custom Sorting Using the SortCompare Event.pdb
│   │   │   │       │   │   │   ├── Custom Sorting Using the SortCompare Event.vshost.exe
│   │   │   │       │   │   │   └── Custom Sorting Using the SortCompare Event.xml
│   │   │   │       │   │   └── Release
│   │   │   │       │   └── obj
│   │   │   │       │       ├── Custom Sorting Using the SortCompare Event.vbproj.FileList.txt
│   │   │   │       │       ├── Debug
│   │   │   │       │       │   ├── Custom Sorting Using the SortCompare Event.exe
│   │   │   │       │       │   ├── Custom Sorting Using the SortCompare Event.pdb
│   │   │   │       │       │   ├── Custom Sorting Using the SortCompare Event.vbproj.GenerateResource.Cache
│   │   │   │       │       │   ├── Custom Sorting Using the SortCompare Event.xml
│   │   │   │       │       │   ├── Custom_Sorting_Using_the_SortCompare_Event.Resources.resources
│   │   │   │       │       │   └── TempPE
│   │   │   │       │       │       └── My Project.Resources.Designer.vb.dll
│   │   │   │       │       └── Release
│   │   │   │       ├── Custom Sorting Using the SortCompare Event.sln
│   │   │   │       └── Custom Sorting Using the SortCompare Event.suo
│   │   │   └── Programmatic Sorting
│   │   │       ├── CS
│   │   │       │   ├── Programmatic Sorting
│   │   │       │   │   ├── Form1.cs
│   │   │       │   │   ├── Programmatic Sorting.csproj
│   │   │       │   │   ├── Properties
│   │   │       │   │   │   ├── AssemblyInfo.cs
│   │   │       │   │   │   ├── Resources.Designer.cs
│   │   │       │   │   │   ├── Resources.resx
│   │   │       │   │   │   ├── Settings.Designer.cs
│   │   │       │   │   │   └── Settings.settings
│   │   │       │   │   ├── bin
│   │   │       │   │   │   ├── Debug
│   │   │       │   │   │   │   ├── Programmatic Sorting.exe
│   │   │       │   │   │   │   ├── Programmatic Sorting.pdb
│   │   │       │   │   │   │   └── Programmatic Sorting.vshost.exe
│   │   │       │   │   │   └── Release
│   │   │       │   │   └── obj
│   │   │       │   │       ├── Debug
│   │   │       │   │       │   ├── Programmatic Sorting.csproj.GenerateResource.Cache
│   │   │       │   │       │   ├── Programmatic Sorting.exe
│   │   │       │   │       │   ├── Programmatic Sorting.pdb
│   │   │       │   │       │   ├── Programmatic_Sorting.Properties.Resources.resources
│   │   │       │   │       │   └── TempPE
│   │   │       │   │       ├── Programmatic Sorting.csproj.FileList.txt
│   │   │       │   │       └── Release
│   │   │       │   ├── Programmatic Sorting.sln
│   │   │       │   └── Programmatic Sorting.suo
│   │   │       └── VB
│   │   │           ├── Programmatic Sorting
│   │   │           │   ├── Form1.Designer.vb
│   │   │           │   ├── Form1.vb
│   │   │           │   ├── My Project
│   │   │           │   │   ├── Application.Designer.vb
│   │   │           │   │   ├── Application.myapp
│   │   │           │   │   ├── AssemblyInfo.vb
│   │   │           │   │   ├── Resources.Designer.vb
│   │   │           │   │   ├── Resources.resx
│   │   │           │   │   ├── Settings.Designer.vb
│   │   │           │   │   └── Settings.settings
│   │   │           │   ├── Programmatic Sorting.vbproj
│   │   │           │   ├── bin
│   │   │           │   │   ├── Debug
│   │   │           │   │   │   ├── Programmatic Sorting.exe
│   │   │           │   │   │   ├── Programmatic Sorting.pdb
│   │   │           │   │   │   ├── Programmatic Sorting.vshost.exe
│   │   │           │   │   │   └── Programmatic Sorting.xml
│   │   │           │   │   └── Release
│   │   │           │   └── obj
│   │   │           │       ├── Debug
│   │   │           │       │   ├── Programmatic Sorting.exe
│   │   │           │       │   ├── Programmatic Sorting.pdb
│   │   │           │       │   ├── Programmatic Sorting.vbproj.GenerateResource.Cache
│   │   │           │       │   ├── Programmatic Sorting.xml
│   │   │           │       │   ├── Programmatic_Sorting.Resources.resources
│   │   │           │       │   └── TempPE
│   │   │           │       │       └── My Project.Resources.Designer.vb.dll
│   │   │           │       ├── Programmatic Sorting.vbproj.FileList.txt
│   │   │           │       └── Release
│   │   │           ├── Programmatic Sorting.sln
│   │   │           └── Programmatic Sorting.suo
│   │   └── Virtual Mode
│   │       ├── CS
│   │       │   ├── Virtual Mode
│   │       │   │   ├── Form1.cs
│   │       │   │   ├── Properties
│   │       │   │   │   ├── AssemblyInfo.cs
│   │       │   │   │   ├── Resources.Designer.cs
│   │       │   │   │   ├── Resources.resx
│   │       │   │   │   ├── Settings.Designer.cs
│   │       │   │   │   └── Settings.settings
│   │       │   │   ├── Virtual Mode.csproj
│   │       │   │   ├── bin
│   │       │   │   │   ├── Debug
│   │       │   │   │   │   ├── Virtual Mode.exe
│   │       │   │   │   │   ├── Virtual Mode.pdb
│   │       │   │   │   │   └── Virtual Mode.vshost.exe
│   │       │   │   │   └── Release
│   │       │   │   └── obj
│   │       │   │       ├── Debug
│   │       │   │       │   ├── TempPE
│   │       │   │       │   ├── Virtual Mode.csproj.GenerateResource.Cache
│   │       │   │       │   ├── Virtual Mode.exe
│   │       │   │       │   ├── Virtual Mode.pdb
│   │       │   │       │   └── Virtual_Mode.Properties.Resources.resources
│   │       │   │       ├── Release
│   │       │   │       └── Virtual Mode.csproj.FileList.txt
│   │       │   ├── Virtual Mode.sln
│   │       │   └── Virtual Mode.suo
│   │       └── VB
│   │           ├── Virtual Mode
│   │           │   ├── Form1.Designer.vb
│   │           │   ├── Form1.vb
│   │           │   ├── My Project
│   │           │   │   ├── Application.Designer.vb
│   │           │   │   ├── Application.myapp
│   │           │   │   ├── AssemblyInfo.vb
│   │           │   │   ├── Resources.Designer.vb
│   │           │   │   ├── Resources.resx
│   │           │   │   ├── Settings.Designer.vb
│   │           │   │   └── Settings.settings
│   │           │   ├── Virtual Mode.vbproj
│   │           │   ├── bin
│   │           │   │   ├── Debug
│   │           │   │   │   ├── Virtual Mode.exe
│   │           │   │   │   ├── Virtual Mode.pdb
│   │           │   │   │   ├── Virtual Mode.vshost.exe
│   │           │   │   │   └── Virtual Mode.xml
│   │           │   │   └── Release
│   │           │   └── obj
│   │           │       ├── Debug
│   │           │       │   ├── TempPE
│   │           │       │   │   └── My Project.Resources.Designer.vb.dll
│   │           │       │   ├── Virtual Mode.exe
│   │           │       │   ├── Virtual Mode.pdb
│   │           │       │   ├── Virtual Mode.vbproj.GenerateResource.Cache
│   │           │       │   ├── Virtual Mode.xml
│   │           │       │   └── Virtual_Mode.Resources.resources
│   │           │       ├── Release
│   │           │       └── Virtual Mode.vbproj.FileList.txt
│   │           ├── Virtual Mode.sln
│   │           └── Virtual Mode.suo
│   ├── My DataGridView FAQ.doc
│   └── My DataGridView Samples.rar
├── formSize
│   ├── App.config
│   ├── FineexPrint.csproj
│   ├── Form1.Designer.cs
│   ├── Form1.cs
│   ├── Form1.resx
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── bin
│   │   ├── Debug
│   │   └── Release
│   └── obj
│       └── Debug
│           ├── DesignTimeResolveAssemblyReferences.cache
│           ├── DesignTimeResolveAssemblyReferencesInput.cache
│           ├── Fineex.FineexPrint.Form1.resources
│           ├── Fineex.FineexPrint.Properties.Resources.resources
│           ├── FineexPrint.FrmMain.resources
│           ├── FineexPrint.csproj.CopyComplete
│           ├── FineexPrint.csproj.CoreCompileInputs.cache
│           ├── FineexPrint.csproj.FileListAbsolute.txt
│           ├── FineexPrint.csproj.GenerateResource.cache
│           ├── FineexPrint.csprojAssemblyReference.cache
│           ├── FineexPrint.exe
│           ├── FineexPrint.pdb
│           └── TempPE
│               └── Properties.Resources.Designer.cs.dll
├── 地图Map
│   └── WpfMap
│       ├── Map.Controls
│       │   ├── Map.Controls.csproj
│       │   ├── Map.Controls.csproj.user
│       │   ├── MapControl
│       │   │   ├── Gauge.xaml
│       │   │   ├── Gauge.xaml.cs
│       │   │   ├── MapAnHui.xaml
│       │   │   ├── MapAnHui.xaml.cs
│       │   │   ├── MapChina.xaml
│       │   │   ├── MapChina.xaml.cs
│       │   │   ├── MapHeNan.xaml
│       │   │   └── MapHeNan.xaml.cs
│       │   ├── Properties
│       │   │   ├── AssemblyInfo.cs
│       │   │   ├── Resources.Designer.cs
│       │   │   ├── Resources.resx
│       │   │   ├── Settings.Designer.cs
│       │   │   └── Settings.settings
│       │   ├── Themes
│       │   │   └── Generic.xaml
│       │   ├── TypeConverters.cs
│       │   └── Utils
│       │       └── MapFlow.cs
│       ├── OutBin
│       │   ├── Map.Controls.dll
│       │   ├── Map.Controls.pdb
│       │   ├── Telerik.Windows.Controls.Chart.dll
│       │   ├── Telerik.Windows.Controls.Charting.dll
│       │   ├── Telerik.Windows.Controls.Input.dll
│       │   ├── Telerik.Windows.Controls.Navigation.dll
│       │   ├── Telerik.Windows.Controls.RibbonView.dll
│       │   ├── Telerik.Windows.Controls.dll
│       │   ├── Telerik.Windows.Data.dll
│       │   ├── WpfMap.exe
│       │   ├── WpfMap.exe.config
│       │   ├── WpfMap.pdb
│       │   ├── WpfMap.vshost.exe
│       │   └── WpfMap.vshost.exe.config
│       ├── README.en.md
│       ├── README.md
│       ├── WpfMap
│       │   ├── App.xaml
│       │   ├── App.xaml.cs
│       │   ├── ChartData.cs
│       │   ├── Imgs
│       │   │   ├── Back.png
│       │   │   ├── shengdan.png
│       │   │   └── windowsLogo.png
│       │   ├── MainWindow.xaml
│       │   ├── MainWindow.xaml.cs
│       │   ├── Properties
│       │   │   ├── AssemblyInfo.cs
│       │   │   ├── Resources.Designer.cs
│       │   │   ├── Resources.resx
│       │   │   ├── Settings.Designer.cs
│       │   │   └── Settings.settings
│       │   ├── WpfMap.csproj
│       │   ├── WpfMap.csproj.user
│       │   └── app.config
│       ├── WpfMap.sln
│       └── lib
│           ├── Telerik.Windows.Controls.Chart.dll
│           ├── Telerik.Windows.Controls.Charting.dll
│           ├── Telerik.Windows.Controls.Input.dll
│           ├── Telerik.Windows.Controls.Navigation.dll
│           ├── Telerik.Windows.Controls.RibbonView.dll
│           ├── Telerik.Windows.Controls.dll
│           └── Telerik.Windows.Data.dll
├── 温度计控件
│   ├── AnimationLibrary
│   │   ├── AnimationCore.cs
│   │   ├── AnimationLibrary.csproj
│   │   ├── AnimationTimer.cs
│   │   ├── Design
│   │   │   └── EmptyExpandableObjectConverter.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── AnimationLibrary.dll
│   │   │       └── AnimationLibrary.pdb
│   │   └── obj
│   │       └── Debug
│   │           ├── AnimationLibrary.csproj.FileListAbsolute.txt
│   │           ├── AnimationLibrary.dll
│   │           ├── AnimationLibrary.pdb
│   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │           └── TempPE
│   ├── ControlLibraryExt
│   │   ├── ControlLibraryExt.csproj
│   │   ├── Design
│   │   │   └── ImaginaryLineBorderExtDesigner.cs
│   │   ├── Properties
│   │   │   └── AssemblyInfo.cs
│   │   ├── Resources
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── bin
│   │   │   ├── Debug
│   │   │   │   ├── AnimationLibrary.dll
│   │   │   │   ├── AnimationLibrary.pdb
│   │   │   │   ├── ControlLibraryExt.dll
│   │   │   │   └── ControlLibraryExt.pdb
│   │   │   └── Release
│   │   ├── obj
│   │   │   └── Debug
│   │   │       ├── ControlLibraryExt.Resources.resources
│   │   │       ├── ControlLibraryExt.csproj.FileListAbsolute.txt
│   │   │       ├── ControlLibraryExt.csproj.GenerateResource.Cache
│   │   │       ├── ControlLibraryExt.csprojResolveAssemblyReference.cache
│   │   │       ├── ControlLibraryExt.dll
│   │   │       ├── ControlLibraryExt.pdb
│   │   │       ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │       └── TempPE
│   │   └── 控件
│   │       ├── ThermometerExt.cs
│   │       └── ThermometerExt.designer.cs
│   ├── 动画
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Resources
│   │   ├── app.config
│   │   ├── bin
│   │   │   └── Debug
│   │   │       ├── AnimationLibrary.dll
│   │   │       ├── AnimationLibrary.pdb
│   │   │       ├── ControlLibraryExt.dll
│   │   │       ├── ControlLibraryExt.pdb
│   │   │       ├── 动画.exe
│   │   │       ├── 动画.exe.config
│   │   │       ├── 动画.pdb
│   │   │       ├── 动画.vshost.exe
│   │   │       ├── 动画.vshost.exe.config
│   │   │       └── 动画.vshost.exe.manifest
│   │   ├── obj
│   │   │   └── x86
│   │   │       └── Debug
│   │   │           ├── DesignTimeResolveAssemblyReferences.cache
│   │   │           ├── DesignTimeResolveAssemblyReferencesInput.cache
│   │   │           ├── TempPE
│   │   │           │   └── Properties.Resources.Designer.cs.dll
│   │   │           ├── 动画.Properties.Resources.resources
│   │   │           ├── 动画.ThermometerExtForm.resources
│   │   │           ├── 动画.csproj.FileListAbsolute.txt
│   │   │           ├── 动画.csproj.GenerateResource.Cache
│   │   │           ├── 动画.csprojResolveAssemblyReference.cache
│   │   │           ├── 动画.exe
│   │   │           └── 动画.pdb
│   │   ├── 窗体
│   │   │   ├── ThermometerExtForm.Designer.cs
│   │   │   ├── ThermometerExtForm.cs
│   │   │   └── ThermometerExtForm.resx
│   │   └── 动画.csproj
│   ├── 动画.sln
│   └── 动画.suo
└── 非主流控件
    ├── AlbumForm.cs
    ├── AlbumForm.designer.cs
    ├── AlbumForm.resx
    ├── Chuyin.Designer.cs
    ├── Chuyin.cs
    ├── Chuyin.resx
    ├── DirectUI.Designer.cs
    ├── DirectUI.cs
    ├── DirectUI.resx
    ├── DuiTextBoxTest.Designer.cs
    ├── DuiTextBoxTest.cs
    ├── DuiTextBoxTest.resx
    ├── Form1.Designer.cs
    ├── Form1.cs
    ├── Form1.resx
    ├── Form2.Designer.cs
    ├── Form2.cs
    ├── Form2.resx
    ├── Form3.Designer.cs
    ├── Form3.cs
    ├── Form3.resx
    ├── Form4.Designer.cs
    ├── Form4.cs
    ├── Form4.resx
    ├── Form5.Designer.cs
    ├── Form5.cs
    ├── Form5.resx
    ├── Kugou.Designer.cs
    ├── Kugou.cs
    ├── Kugou.resx
    ├── ListBox.Designer.cs
    ├── ListBox.cs
    ├── ListBox.resx
    ├── Metro.Designer.cs
    ├── Metro.cs
    ├── Metro.resx
    ├── Program.cs
    ├── Properties
    │   ├── AssemblyInfo.cs
    │   ├── Resources.Designer.cs
    │   ├── Resources.resx
    │   ├── Settings.Designer.cs
    │   └── Settings.settings
    ├── QQ.Designer.cs
    ├── QQ.cs
    ├── QQ.resx
    ├── QQConfig.Designer.cs
    ├── QQConfig.cs
    ├── QQConfig.resx
    ├── ShadoForm.Designer.cs
    ├── ShadoForm.cs
    ├── ShadoForm.resx
    ├── SuperMario.Designer.cs
    ├── SuperMario.cs
    ├── SuperMario.resx
    ├── bin
    │   ├── Debug
    │   │   ├── Images
    │   │   │   ├── 1.gif
    │   │   │   ├── 1_100.gif
    │   │   │   ├── chuyin
    │   │   │   │   ├── 1.png
    │   │   │   │   ├── 10.png
    │   │   │   │   ├── 100.png
    │   │   │   │   ├── 101.png
    │   │   │   │   ├── 102.png
    │   │   │   │   ├── 103.png
    │   │   │   │   ├── 104.png
    │   │   │   │   ├── 105.png
    │   │   │   │   ├── 106.png
    │   │   │   │   ├── 107.png
    │   │   │   │   ├── 108.png
    │   │   │   │   ├── 109.png
    │   │   │   │   ├── 11.png
    │   │   │   │   ├── 110.png
    │   │   │   │   ├── 111.png
    │   │   │   │   ├── 112.png
    │   │   │   │   ├── 113.png
    │   │   │   │   ├── 114.png
    │   │   │   │   ├── 115.png
    │   │   │   │   ├── 116.png
    │   │   │   │   ├── 117.png
    │   │   │   │   ├── 118.png
    │   │   │   │   ├── 119.png
    │   │   │   │   ├── 12.png
    │   │   │   │   ├── 120.png
    │   │   │   │   ├── 121.png
    │   │   │   │   ├── 122.png
    │   │   │   │   ├── 123.png
    │   │   │   │   ├── 124.png
    │   │   │   │   ├── 125.png
    │   │   │   │   ├── 126.png
    │   │   │   │   ├── 127.png
    │   │   │   │   ├── 128.png
    │   │   │   │   ├── 129.png
    │   │   │   │   ├── 13.png
    │   │   │   │   ├── 14.png
    │   │   │   │   ├── 15.png
    │   │   │   │   ├── 16.png
    │   │   │   │   ├── 17.png
    │   │   │   │   ├── 18.png
    │   │   │   │   ├── 19.png
    │   │   │   │   ├── 2.png
    │   │   │   │   ├── 20.png
    │   │   │   │   ├── 21.png
    │   │   │   │   ├── 22.png
    │   │   │   │   ├── 23.png
    │   │   │   │   ├── 24.png
    │   │   │   │   ├── 25.png
    │   │   │   │   ├── 26.png
    │   │   │   │   ├── 27.png
    │   │   │   │   ├── 28.png
    │   │   │   │   ├── 29.png
    │   │   │   │   ├── 3.png
    │   │   │   │   ├── 30.png
    │   │   │   │   ├── 31.png
    │   │   │   │   ├── 32.png
    │   │   │   │   ├── 33.png
    │   │   │   │   ├── 34.png
    │   │   │   │   ├── 35.png
    │   │   │   │   ├── 36.png
    │   │   │   │   ├── 37.png
    │   │   │   │   ├── 38.png
    │   │   │   │   ├── 39.png
    │   │   │   │   ├── 4.png
    │   │   │   │   ├── 40.png
    │   │   │   │   ├── 41.png
    │   │   │   │   ├── 42.png
    │   │   │   │   ├── 43.png
    │   │   │   │   ├── 44.png
    │   │   │   │   ├── 45.png
    │   │   │   │   ├── 46.png
    │   │   │   │   ├── 47.png
    │   │   │   │   ├── 48.png
    │   │   │   │   ├── 49.png
    │   │   │   │   ├── 5.png
    │   │   │   │   ├── 50.png
    │   │   │   │   ├── 51.png
    │   │   │   │   ├── 52.png
    │   │   │   │   ├── 53.png
    │   │   │   │   ├── 54.png
    │   │   │   │   ├── 55.png
    │   │   │   │   ├── 56.png
    │   │   │   │   ├── 57.png
    │   │   │   │   ├── 58.png
    │   │   │   │   ├── 59.png
    │   │   │   │   ├── 6.png
    │   │   │   │   ├── 60.png
    │   │   │   │   ├── 61.png
    │   │   │   │   ├── 62.png
    │   │   │   │   ├── 63.png
    │   │   │   │   ├── 64.png
    │   │   │   │   ├── 65.png
    │   │   │   │   ├── 66.png
    │   │   │   │   ├── 67.png
    │   │   │   │   ├── 68.png
    │   │   │   │   ├── 69.png
    │   │   │   │   ├── 7.png
    │   │   │   │   ├── 70.png
    │   │   │   │   ├── 71.png
    │   │   │   │   ├── 72.png
    │   │   │   │   ├── 73.png
    │   │   │   │   ├── 74.png
    │   │   │   │   ├── 75.png
    │   │   │   │   ├── 76.png
    │   │   │   │   ├── 77.png
    │   │   │   │   ├── 78.png
    │   │   │   │   ├── 79.png
    │   │   │   │   ├── 8.png
    │   │   │   │   ├── 80.png
    │   │   │   │   ├── 81.png
    │   │   │   │   ├── 82.png
    │   │   │   │   ├── 83.png
    │   │   │   │   ├── 84.png
    │   │   │   │   ├── 85.png
    │   │   │   │   ├── 86.png
    │   │   │   │   ├── 87.png
    │   │   │   │   ├── 88.png
    │   │   │   │   ├── 89.png
    │   │   │   │   ├── 9.png
    │   │   │   │   ├── 90.png
    │   │   │   │   ├── 91.png
    │   │   │   │   ├── 92.png
    │   │   │   │   ├── 93.png
    │   │   │   │   ├── 94.png
    │   │   │   │   ├── 95.png
    │   │   │   │   ├── 96.png
    │   │   │   │   ├── 97.png
    │   │   │   │   ├── 98.png
    │   │   │   │   └── 99.png
    │   │   │   ├── close0.png
    │   │   │   ├── close1.png
    │   │   │   ├── cloud.png
    │   │   │   ├── itemClose.png
    │   │   │   ├── itemOpen.png
    │   │   │   ├── loginbody.png
    │   │   │   ├── logo32.ico
    │   │   │   ├── mini0.png
    │   │   │   ├── mini1.png
    │   │   │   ├── smile.png
    │   │   │   ├── sun2.png
    │   │   │   ├── yezi2.png
    │   │   │   └── yezi3.png
    │   │   ├── LayeredSkin.dll
    │   │   ├── test.exe
    │   │   ├── test.pdb
    │   │   └── test.vshost.exe
    │   └── Release
    ├── obj
    │   └── Debug
    │       ├── DesignTimeResolveAssemblyReferences.cache
    │       ├── DesignTimeResolveAssemblyReferencesInput.cache
    │       ├── TempPE
    │       ├── test.AlbumForm.resources
    │       ├── test.Chuyin.resources
    │       ├── test.DirectUI.resources
    │       ├── test.DuiTextBoxTest.resources
    │       ├── test.Form1.resources
    │       ├── test.Form2.resources
    │       ├── test.Form3.resources
    │       ├── test.Form4.resources
    │       ├── test.Form5.resources
    │       ├── test.Kugou.resources
    │       ├── test.ListBox.resources
    │       ├── test.Metro.resources
    │       ├── test.Properties.Resources.resources
    │       ├── test.QQ.resources
    │       ├── test.QQConfig.resources
    │       ├── test.ShadoForm.resources
    │       ├── test.SuperMario.resources
    │       ├── test.csproj.FileListAbsolute.txt
    │       ├── test.csproj.GenerateResource.Cache
    │       ├── test.csprojResolveAssemblyReference.cache
    │       ├── test.exe
    │       ├── test.instr.pdb
    │       └── test.pdb
    ├── test.csproj
    ├── test.csproj.user
    └── test.v12.suo

389 directories, 1778 files






标签: 控件 UI

实例下载地址

C#:UI各类控件

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警