在好例子网,分享、交流、成长!
您当前所在位置:首页C# 开发实例桌面应用界面/GUI → Winform开发全套31个UI组件开源共享](TTX.Framework.WindowUI)--经典资源

Winform开发全套31个UI组件开源共享](TTX.Framework.WindowUI)--经典资源

桌面应用界面/GUI

下载此实例
  • 开发语言:C#
  • 实例大小:17.51M
  • 下载次数:82
  • 浏览次数:589
  • 发布时间:2022-11-22
  • 实例类别:桌面应用界面/GUI
  • 发 布 人:lijingguang
  • 文件格式:.rar
  • 所需积分:5
 相关标签: winform开发 winform window FORM wind

实例介绍

【实例简介】Winform开发全套31个UI组件开源共享](TTX.Framework.WindowUI)--经典资源

【实例截图】

【核心代码】

.
├── Winform开发全套31个UI组件开源共享](TTX.Framework.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
│   │   │   ├── Map
│   │   │   ├── 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
│   │   │   ├── Debug
│   │   │   └── 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
│   │   │           ├── Microsoft.Office.Interop.Excel.dll
│   │   │           ├── 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.AssemblyReference.cache
│   │           │   ├── TX.Framework.WindowUI.csproj.CopyComplete
│   │           │   ├── TX.Framework.WindowUI.csproj.CoreCompileInputs.cache
│   │           │   ├── 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
│   ├── 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
│   │   │   │   ├── 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
│   │   │   │   ├── Microsoft.Office.Interop.Excel.dll
│   │   │   │   ├── 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
│   │   │   └── Release
│   │   ├── 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.AssemblyReference.cache
│   │   │           ├── WindowsTest.csproj.CopyComplete
│   │   │           ├── WindowsTest.csproj.CoreCompileInputs.cache
│   │   │           ├── 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
│   └── _ReSharper.TX.Framework.WindowUI
│       ├── AspFileDataCache.dat
│       ├── AssemblyInfoCache.dat
│       ├── BuildScriptCache
│       ├── ConditionalNames
│       │   └── 1
│       │       └── 47875ab6.dat
│       ├── GeneratedFiles
│       │   └── 1
│       │       └── 47875ab6.dat
│       ├── JSTest
│       ├── JavaScriptCache
│       │   └── 0
│       │       └── 5a80dc6.dat
│       ├── MVC
│       ├── MvcAnnotations
│       ├── NamedArguments
│       │   └── 9
│       │       └── 3b3e6010.dat
│       ├── Pdb
│       ├── PersistentCaches
│       │   ├── 000003.log
│       │   ├── CURRENT
│       │   ├── LOCK
│       │   ├── LOG
│       │   └── MANIFEST-000002
│       ├── ProjectFileDataCache
│       │   ├── ResourceDefaultLanguagePropertyProvider.cache.dat
│       │   └── ShouldUseHostCompilerProvider.cache.dat
│       ├── RecentItems
│       │   └── RecentFiles.dat
│       ├── Resources
│       ├── SymbolCache.bin
│       ├── TagPrefixes
│       └── WebSymbols
└── 好例子网_Winform开发全套31个UI组件开源共享](TTX.Framework.WindowUI)--经典资源.rar

134 directories, 796 files





实例下载地址

Winform开发全套31个UI组件开源共享](TTX.Framework.WindowUI)--经典资源

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

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

网友评论

发表评论

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

查看所有0条评论>>

小贴士

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

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

关于好例子网

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

;
报警