there are three window states , they are Minimize,Maximize,Normal so we can do them with code easily you can add 3 button and you can change the text properties to Minimize,Maximize,Normal and add the codes to them
for minimize button
for maximize button
for normal button
so thats it
for minimize button
Me.WindowState = FormWindowState.Minimized
for maximize button
Me.WindowState = FormWindowState.Maximized
for normal button
Me.WindowState = FormWindowState.Normal
so thats it
1 comments:
:-bd
ReplyPost a Comment
Note: Only a member of this blog may post a comment.