Deepak S
Deepak S

Reputation: 45

Creating a scroll able windows form C#

I have a windows form wherein i am displaying all the tables,figures etc. But, the problem is that even though i set the auto scroll property to true, the form hence created doesn't have a scroll bar.

Upvotes: 0

Views: 46

Answers (1)

Mohammad Arshad Alam
Mohammad Arshad Alam

Reputation: 9862

Write in your form_load and make sure you have not changed it any where.

 private void yourForm_Load(object sender, EventArgs e)
 {
        this.AutoScroll = true;
 }

Verify it by re sizing your form else scroll bar will not be visible.

Upvotes: 1

Related Questions