Posts

Showing posts from 2019

How to make Stylish and Animated Tabbed forms | with source code (VB.Net & C#)

Image
How to make stylish and animated tabbed forms in vb.net & c#. Lets start: Step : 1 Create 3 forms, Main form FormTopTabs FormLeftTabs Step: 2 On main form create only two buttons One for FormTopTabs One for FormLeftTabs Step: 3 Create controls: Create a left panel where you can put your tabbed button. Create a panel on top where you can show your tab form name Create a main panel where the tabbed form are open Final Step: Codes Codes for Main Form: Public Class MainForm     Private Sub MetroButton1_Click(sender As Object, e As EventArgs) Handles MetroButton1.Click         Form1.Show()     End Sub     Private Sub MetroButton2_Click(sender As Object, e As EventArgs) Handles MetroButton2.Click         Form2.Show()     End Sub Codes for FormTopTabs Imports BunifuAnimatorNS Public Class Form2     Dim btn As Button = Nothing     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load