Example #1
0
        public PopupList( SubtleUpdateItem S, Frame F )
        {
            Item = S;
            this.F = F;

            FrameContent = Activator.CreateInstance( S.Nav, this ) as Page;

            NotifyChanged( "FrameContent" );
        }
Example #2
0
 private void DisplayTopList( SubtleUpdateItem Item )
 {
     ISectionItem PS = X.Instance<ISectionItem>( XProto.NavListSection, Item.Name );
     MainSplitView.DataContext = PS;
     PS.Load( Item.Payload.ToString(), true );
 }
Example #3
0
 private void OpenNavigationList( ActiveItem Item )
 {
     NavListItem = new SubtleUpdateItem( Item.Name, Item.Desc, Item.Desc2, Item.Payload );
     // This will cause an direct navigation to the navigation list view
     // in TopList mode
     NotifyChanged( "NavListItem" );
 }