zoukankan      html  css  js  c++  java
  • Working with the Accordion Control in Silverlight 4.0

    In this example we will use the Accordion control to display a list of books, grouped by category.

    1. Create a new SL application in VS 2010 called AccordionControl. Allow VS to create a web applition project to host the application.

    2. With the MainPage.Xaml file selected, position the cursor in the source in Layout Grid. Find and double-click on the Accordion control in the Toolbox. This will add the control to the page, as well as the proper namespace reference:

    xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit"

    3. After you have added the Accordion, right-click on the control in the design view and select Reset Layout -> All. Then Name the Accordion BookList, set its width to 200, and specify a Margin of 10.

    <Grid x:Name="LayoutRoot" Background="White" >

      <toolkit:Accordion Name="BookList" Width="200" Margin="10" />

    </Grid>

    4. Switch to the code behind in the file MainPae.xaml.cs file. We need to define the data we'll be binding to the Accordion. For simplicity, we'll define the data right in the code behind file. Add two classes, one for Categories and one for Books.

     public class BookCategory
        {
            public string CategoryName { get; set; }
            public List<Booknew> Books { get; set; }
        }
        public class Booknew
        {
            public string Title { get; set; }
        }

    5. Next we need to populate the classes with some data. To do this, first wire up the Loaded event and insert the following code:

    public partial class MainPage : UserControl
        {
            public MainPage()
            {
                InitializeComponent();
                this.Loaded += new RoutedEventHandler(MainPage_Loaded);
            }
     
            void MainPage_Loaded(object sender, RoutedEventArgs e)
            {
                List<BookCategory> Library = new List<BookCategory>();
     
                BookCategory cat1 = new BookCategory() { 
                    CategoryName = "Silverlight", 
                    Books = new List<Book>() };
                cat1.Books.Add(new Book() { Title = "Beginning Silverlight 4" });
                cat1.Books.Add(new Book() { Title = "Pro Silverlight 4" });
                Library.Add(cat1);
     
                BookCategory cat2 = new BookCategory() { 
                    CategoryName = "ASP.NET", 
                    Books = new List<Book>() };
                cat2.Books.Add(new Book() { Title = "Pro ASP.NET 4" }) ;
                Library.Add(cat2);
            }
        }
     
        public class BookCategory
        {
            public string CategoryName { get; set; }
            public List<Book> Books { get; set; }
        }
     
        public class Book
        {
            public string Title { get; set; }
        }

    6. Now we need to define the header and content items, using the ItemTemplate for the header and the ContentTemplate for the content. For the ItemTemplate, we will simply define a TextBlock that will display the BookCategory. For the CotentTemplate, we will define a ListBox control that will contain a list of TextBlocks, each displaying a book Title.

    <toolkit:Accordion Width="200" x:Name="BookList" Margin="10" >
                <toolkit:Accordion.ContentTemplate>
                    <DataTemplate>
                        <ListBox ItemsSource="{Binding Books}" BorderThickness="0">
                            <ListBox.ItemTemplate>
                                <DataTemplate>
                                    <TextBlock FontWeight="Bold" Text="{Binding Title}" />
                                </DataTemplate>
                            </ListBox.ItemTemplate>
                        </ListBox>
                    </DataTemplate>
                </toolkit:Accordion.ContentTemplate>
                <toolkit:Accordion.ItemTemplate>
                    <DataTemplate>
                        <TextBlock Text="{Binding CategoryName}" />
                    </DataTemplate>
                </toolkit:Accordion.ItemTemplate>
            </toolkit:Accordion>

    7. Next we need to bind the Library data source to the Accordion Control.

          this.BookList.ItemsSource = Library;

    8. Press F5 to run the solution.

  • 相关阅读:
    SDC是如何炼成的?Exception篇
    数字IC后端时钟树综合专题(OCC电路案例一)
    DDR接口时序实例
    SDC是如何炼成的?IO约束篇
    10个免费的响应式jQuery Carousel 轮播图插件
    为Web程序员准备的10个最棒的jQuery视频插件
    10种优化页面加载速度的方法
    人人必知的10个 jQuery 小技巧
    css3 旋转 过渡 实例
    css3 学习
  • 原文地址:https://www.cnblogs.com/jerrychenfly/p/2139565.html
Copyright © 2011-2022 走看看