Exemplo n.º 1
0
        public void SetPages(List <View> pages)
        {
            controller = new WalkthroughController(this, pages);

            AddPagesToView(pages);
            AddProgress();
            ShowControls();
        }
Exemplo n.º 2
0
 public Walkthrough()
 {
     InitializeComponent();
     PagesLayout.SizeChanged += (sender, e) => { PositionPages(); };
     ProgressMarker           = ImageSource.FromResource("Trailmaker.UI.Images.circlefull.png");
     controller = new WalkthroughController(this, new List <View> {
     });
     ShowControls();
 }