嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#实现简单浏览器
.
├── App.ico
├── AssemblyInfo.cs
├── C#实现简单浏览器.rar
├── MagicLibrary
│ ├── AssemblyInfo.cs
│ ├── Collections
│ │ ├── CollectionWithEvents.cs
│ │ ├── ContentCollection.cs
│ │ ├── HotZoneCollection.cs
│ │ ├── ManagerContentCollection.cs
│ │ ├── MenuCommandCollection.cs
│ │ ├── StringCollection.cs
│ │ ├── TabGroupBaseCollection.cs
│ │ ├── TabPageCollection.cs
│ │ ├── TargetCollection.cs
│ │ ├── WindowCollection.cs
│ │ ├── WindowDetailCollection.cs
│ │ ├── WizardPageCollection.cs
│ │ └── ZoneCollection.cs
│ ├── Common
│ │ ├── ColorHelper.cs
│ │ ├── ControlHelper.cs
│ │ ├── ConversionHelper.cs
│ │ ├── DebugHelper.cs
│ │ ├── DrawHelper.cs
│ │ ├── Enums.cs
│ │ └── ResourceHelper.cs
│ ├── Controls
│ │ ├── BorderForControl
│ │ │ ├── BorderForControl.cs
│ │ │ └── BorderForControl.resx
│ │ ├── InertButton
│ │ │ ├── InertButton.cs
│ │ │ └── InertButton.resx
│ │ ├── InertButton.bmp
│ │ ├── ResizeBar
│ │ │ ├── ResizeBar.cs
│ │ │ └── ResizeBar.resx
│ │ ├── TabControl
│ │ │ ├── TabControl.cs
│ │ │ ├── TabControl.resx
│ │ │ ├── TabControlDesigner.cs
│ │ │ ├── TabPage.cs
│ │ │ └── TabPage.resx
│ │ ├── TabControl.bmp
│ │ ├── TabbedGroups
│ │ │ ├── TabGroupBase.cs
│ │ │ ├── TabGroupLeaf.cs
│ │ │ ├── TabGroupSequence.cs
│ │ │ ├── TabbedGroupEventArgs.cs
│ │ │ ├── TabbedGroups.cs
│ │ │ ├── TabbedGroups.resx
│ │ │ └── Target.cs
│ │ ├── TabbedGroups.bmp
│ │ ├── WizardControl
│ │ │ ├── WizardControl.cs
│ │ │ ├── WizardControl.resx
│ │ │ ├── WizardControlDesigner.cs
│ │ │ ├── WizardPage.cs
│ │ │ └── WizardPage.resx
│ │ └── WizardControl.bmp
│ ├── Docking
│ │ ├── AutoHidePanel.cs
│ │ ├── AutoHidePanel.resx
│ │ ├── Content.cs
│ │ ├── Definitions.cs
│ │ ├── DockingManager.cs
│ │ ├── FloatinglForm.cs
│ │ ├── FloatinglForm.resx
│ │ ├── HotZone.cs
│ │ ├── HotZoneFloating.cs
│ │ ├── HotZoneNull.cs
│ │ ├── HotZoneReposition.cs
│ │ ├── HotZoneSequence.cs
│ │ ├── HotZoneTabbed.cs
│ │ ├── Redocker.cs
│ │ ├── RedockerContent.cs
│ │ ├── Restore.cs
│ │ ├── TabStub.cs
│ │ ├── TabStub.resx
│ │ ├── Window.cs
│ │ ├── Window.resx
│ │ ├── WindowContent.cs
│ │ ├── WindowContentTabbed.cs
│ │ ├── WindowDetail.cs
│ │ ├── WindowDetail.resx
│ │ ├── WindowDetailCaption.cs
│ │ ├── WindowDetailCaption.resx
│ │ ├── Zone.cs
│ │ ├── Zone.resx
│ │ ├── ZoneHelper.cs
│ │ └── ZoneSequence.cs
│ ├── Forms
│ │ ├── WizardDialog.cs
│ │ └── WizardDialog.resx
│ ├── MagicLibrary.csproj
│ ├── MagicLibrary.csproj.user
│ ├── Menus
│ │ ├── DrawCommand.cs
│ │ ├── MenuCommand.cs
│ │ ├── MenuCommand.resx
│ │ ├── MenuControl.bmp
│ │ ├── MenuControl.cs
│ │ ├── MenuControl.resx
│ │ ├── MenuControlDesigner.cs
│ │ └── PopupMenu.cs
│ ├── Resources
│ │ ├── ImagesCaptionIDE.bmp
│ │ ├── ImagesCaptionPlain.bmp
│ │ ├── ImagesMenuControl.bmp
│ │ ├── ImagesPopupMenu.bmp
│ │ ├── ImagesTabControl.bmp
│ │ ├── ImagesTabbedGroups.bmp
│ │ ├── LibraryIcon.ico
│ │ ├── TabbedInvalid.cur
│ │ ├── TabbedValid.cur
│ │ └── WizardPicture.bmp
│ └── Win32
│ ├── Enums.cs
│ ├── Gdi32.cs
│ ├── Structs.cs
│ └── User32.cs
├── MainForm.cs
├── MainForm.resx
├── StartupForm.cs
├── StartupForm.resx
├── TWBFavorites.cs
├── TWBFavorites.resx
├── TabWebBrowser.csproj
├── TabWebBrowser.csproj.user
├── TabWebBrowser.sln
├── TabWebBrowser.suo
└── bin
└── Debug
├── AxInterop.SHDocVw.dll
├── Interop.SHDocVw.dll
└── MagicLocalLibrary.dll
17 directories, 120 files