├── .gitattributes ├── .gitignore ├── LICENSE ├── Piksel.Controls.TabWizard.sln ├── Piksel.Controls.TabWizard ├── Piksel.Controls.TabWizard.csproj ├── Properties │ └── AssemblyInfo.cs └── TabWizardControl.cs ├── README.md └── TabWizardControl Example ├── App.config ├── FormExample.Designer.cs ├── FormExample.cs ├── FormExample.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings └── TabWizardControl Example.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/LICENSE -------------------------------------------------------------------------------- /Piksel.Controls.TabWizard.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/Piksel.Controls.TabWizard.sln -------------------------------------------------------------------------------- /Piksel.Controls.TabWizard/Piksel.Controls.TabWizard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/Piksel.Controls.TabWizard/Piksel.Controls.TabWizard.csproj -------------------------------------------------------------------------------- /Piksel.Controls.TabWizard/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/Piksel.Controls.TabWizard/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Piksel.Controls.TabWizard/TabWizardControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/Piksel.Controls.TabWizard/TabWizardControl.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/README.md -------------------------------------------------------------------------------- /TabWizardControl Example/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/TabWizardControl Example/App.config -------------------------------------------------------------------------------- /TabWizardControl Example/FormExample.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/TabWizardControl Example/FormExample.Designer.cs -------------------------------------------------------------------------------- /TabWizardControl Example/FormExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/TabWizardControl Example/FormExample.cs -------------------------------------------------------------------------------- /TabWizardControl Example/FormExample.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/TabWizardControl Example/FormExample.resx -------------------------------------------------------------------------------- /TabWizardControl Example/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/TabWizardControl Example/Program.cs -------------------------------------------------------------------------------- /TabWizardControl Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/TabWizardControl Example/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TabWizardControl Example/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/TabWizardControl Example/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TabWizardControl Example/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/TabWizardControl Example/Properties/Resources.resx -------------------------------------------------------------------------------- /TabWizardControl Example/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/TabWizardControl Example/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TabWizardControl Example/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/TabWizardControl Example/Properties/Settings.settings -------------------------------------------------------------------------------- /TabWizardControl Example/TabWizardControl Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piksel/TabWizardControl/HEAD/TabWizardControl Example/TabWizardControl Example.csproj --------------------------------------------------------------------------------