Få scrollbars frem i en scrollableControl
HejJeg han ikke få scrollbar frem på min control.
Jeg har lavet følgende class
public class Class1 : ScrollableControl
{
public Class1()
{
System.Drawing.Size Size1 = new System.Drawing.Size(20,20);
this.AutoScroll = true;
this.SetBounds(10, 10, 1000, 1000);
this.AutoScrollMinSize = Size1;
this.BackColor = Color.Azure;
}
}
Som jeg Add'er til en mindre UserControl og jeg har også prøvet med en mindre form, men i ingen af tilfældene dukker der scrollbars op.
