0

I'm trying to add a horizontal scrollbar on my (DevExpress) TileControl in Visual Studio 2010, but I always fail. I know that when you create a TileControl you can automatically scroll with the mouse wheel, but how do I add a Horizontal Scroll bar, too?

DmitryG
  • 17,677
  • 1
  • 30
  • 53
  • ' TileControl1.AllowDrag("HScrollBar1.Value") TileControl1.Text = HScrollBar1 HScrollBar1 = TileControl1.Text = HScrollBar1 ' I've tried Simple codes like I wrote. I tried to put them in all subs, classes. Didn't worked. I'm new on TileControl so I don't know much – user2056954 Feb 09 '13 at 12:59

1 Answers1

0

I believe you can use the TileControl.ScrollMode property:

tileControl1.ScrollMode = TileControlScrollMode.ScrollBar;
DmitryG
  • 17,677
  • 1
  • 30
  • 53