Skip to content

ScrollViewer

Summary

Represents a scrollable area that can contain other visible elements.

Signature

1
public class ScrollViewer : Control

Namespace

cAlgo.API

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
 using cAlgo.API;
 namespace cAlgo
 {
     // This sample indicator shows how to create a scrollable chart controls container via ScrollViewer control
     [Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.None)]
     public class ScrollViewerSample : Indicator
     {
         protected override void Initialize()
         {
             var scrollViewer = new ScrollViewer
             {
                 HorizontalAlignment = HorizontalAlignment.Center,
                 VerticalAlignment = VerticalAlignment.Center,
                 BackgroundColor = Color.Gold,
                 Opacity = 0.7,
                 HorizontalScrollBarVisibility = ScrollBarVisibility.Auto,
                 VerticalScrollBarVisibility = ScrollBarVisibility.Visible,
                 Height = 100
             };
             var grid = new Grid(10, 2)
             {
                 BackgroundColor = Color.Gold,
                 HorizontalAlignment = HorizontalAlignment.Center,
                 VerticalAlignment = VerticalAlignment.Center,
             };
             scrollViewer.Content = grid;
             for (int iRow = 0; iRow < 10; iRow++)
             {
                 grid.AddChild(new TextBlock
                 {
                     Text = "Text",
                     Margin = 5,
                     ForegroundColor = Color.Black,
                     FontWeight = FontWeight.ExtraBold
                 }, iRow, 0);
                 grid.AddChild(new Button
                 {
                     Text = "Button",
                     Margin = 5,
                     ForegroundColor = Color.Black,
                     FontWeight = FontWeight.ExtraBold
                 }, iRow, 1);
             }
             Chart.AddControl(scrollViewer);
         }
         public override void Calculate(int index)
         {
         }
     }
 }

Properties

HorizontalScrollBarVisibility

Summary

Defines the horizontal scroll bar visibility.

Signature

1
public ScrollBarVisibility HorizontalScrollBarVisibility {get; set;}

Return Value

ScrollBarVisibility

VerticalScrollBarVisibility

Summary

Defines the vertical scroll bar visibility.

Signature

1
public ScrollBarVisibility VerticalScrollBarVisibility {get; set;}

Return Value

ScrollBarVisibility

Content

Summary

Gets or sets the content.

Signature

1
public ControlBase Content {get; set;}

Return Value

ControlBase