2015-12-02 71 views
0

我想我的應用程序移動到描述頁面上點擊輪轂部 但代碼是不工作...navigaton頁從輪轂部

這是我的XAML ,有很多部分,但已宣佈一個..

<Hub Header="Hub" x:Name="hub" HorizontalAlignment="Left" VerticalAlignment="Top" Height="420" Width="1500" Grid.Row="1" Margin="0,113,-134,0"> 

     <HubSection x:Name="one" Header="HubSection 0" Width="330" Height="380" > 


      <HubSection.Background> 
       <ImageBrush Stretch="Uniform" ImageSource="Assets/ck.png"/> 
      </HubSection.Background> 

      <DataTemplate> 
       <Hub SectionHeaderClick="Hub_SectionHeaderClick" Padding="40,40,0,0" Name="click"> 

       </Hub> 

      </DataTemplate> 

     </HubSection> 
</Hub> 

這裏是我的CSS

private void Hub_SectionHeaderClick(object sender, HubSectionHeaderClickEventArgs e) 
    { 
     this.Frame.Navigate(typeof(descripton)); 
    } 
+0

怎麼不是這方面的工作?點擊部分標題後會發生什麼? –

+0

什麼都沒有發生...... –

回答

0

您正在使用A DataTemplate,但需要將其關聯到ItemsControl。

試試這個:

<Hub Header="Hub" x:Name="hub" HorizontalAlignment="Left" VerticalAlignment="Top" Height="420" Width="1500" Grid.Row="1" Margin="0,113,-134,0">  
    <HubSection x:Name="one" Header="HubSection 0" Width="330" Height="380" Tapped="Hub_SectionHeaderClick">  
     <HubSection.Background> 
      <ImageBrush Stretch="Uniform" ImageSource="Assets/ck.png"/> 
     </HubSection.Background>  
    </HubSection> 
</Hub> 

感謝,