winfwu

导航

WPF DataTemplate 应用之一(初级Window.Resources应用)

效果图:

<Window.Resources>

        <DataTemplate x:Key="myTaskTemplate">

            <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">

                <TextBlock Text="c# " Width="80" Background="Red"/>

                <TextBlock Text="Java " Width="80" />

                <TextBlock Text="VB " Width="80" />

                <TextBlock Text="C++ " Width="80" />

                <s:SurfaceButton Background="Red" Click="Button_Click">

                    OK

                </s:SurfaceButton>

            </StackPanel>

        </DataTemplate>

    </Window.Resources>

    <Grid>

        <ListBox Width="400" Margin="10" Background="LightBlue"     

         ItemTemplate="{StaticResource myTaskTemplate}" >

            <StackPanel>

               

            </StackPanel>

        </ListBox>

    </Grid>

</s:SurfaceWindow>

posted on 2013-02-18 15:23  winfwu  阅读(512)  评论(0编辑  收藏  举报