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?
Asked
Active
Viewed 629 times
0

DmitryG
- 17,677
- 1
- 30
- 53

user2056954
- 9
- 4
-
' 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 Answers
0
I believe you can use the TileControl.ScrollMode property:
tileControl1.ScrollMode = TileControlScrollMode.ScrollBar;

DmitryG
- 17,677
- 1
- 30
- 53