Extended Library for WPF and Silverlight | ComponentOne
Expander / Expander XAML Quick Reference
In This Topic
    Expander XAML Quick Reference
    In This Topic

    This topic is dedicated to providing a quick overview of the XAML used to create a C1Expander control.

    The following illustrates how to create an expander with TextBlock content:

    XAML
    Copy Code
    <c1:C1Expander Height="122" HorizontalAlignment="Left" Name="c1Expander1" VerticalAlignment="Top" Width="179">
       <TextBlock Height="23" HorizontalAlignment="Left" Name="textBlock1" Text="TextBlock" VerticalAlignment="Top">
           Hello World!
       </TextBlock>
    </c1:C1Expander>