IIntervalProvider Interface

View as Markdown

When creating your NTTabPage, if you wish to use the interval link, be sure to implement the IIntervalProvider interface.

Examples

1public class MyWindowTabPage : NTTabPage, IIntervalProvider
2{
3 public MyWindowTabPage()
4 {
5 /* Define the content for our NTTabPage. We can load loose XAML to define controls and layouts
6 if we so choose here as well.
7
8 Note: XAML with event handlers defined inside WILL FAIL when attempted to load.
9 Note: XAML with "inline code" WILL FAIL when attempted to load */
10 }
11
12 // IIntervalProvider member
13 public BarsPeriod BarsPeriod { get; set; }
14
15 // Be sure to include all the required NTTabPage members as well
16}