,
Share with your friends 

Forms with Customized taskbar using picture box in Advanced method

9 ratings Views 185 
Author: Anto (Anto Y)  View Profile |  View other solutions by this author

Question / Problem


To create a task bar with Advanced Compact look

Solution

step1>go to property of the form select form border = none
step2>then create a picture box on the form top
step3>click on the picture box

type the following code for sizable movements on picture box

 If e.Button = MouseButtons.Left Then
            Dim mousePos As Point = Control.MousePosition
            mousePos.Offset(mouseOffset.X, mouseOffset.Y)
            Location = mousePos
        End If
step4> for minimize,maximize, close the coding are shown below

          

Applies to

.Net 2.0 Windows Forms

Rank It

Login to rank it

Report


Advertisement