コード例 #1
0
ファイル: PopupList.cs プロジェクト: tgckpg/wenku10
        public PopupList( SubtleUpdateItem S, Frame F )
        {
            Item = S;
            this.F = F;

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

            NotifyChanged( "FrameContent" );
        }
コード例 #2
0
ファイル: NavList.xaml.cs プロジェクト: tgckpg/wenku10
 private void DisplayTopList( SubtleUpdateItem Item )
 {
     ISectionItem PS = X.Instance<ISectionItem>( XProto.NavListSection, Item.Name );
     MainSplitView.DataContext = PS;
     PS.Load( Item.Payload.ToString(), true );
 }
コード例 #3
0
ファイル: CategorizedSection.cs プロジェクト: tgckpg/wenku10
 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" );
 }