Adding Taskbar To Form
Plz help me out. I want to make taskbar on windows form in C#.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Bechir BejaouiPosted Mar 1, 2009, 11:53 AM
{
public Form1()
{
InitializeComponent();
StatusBar taskBar = new StatusBar();
taskBar.Visible = true;
this.Controls.Add(taskBar);
}
}