• dataTemplate 之 ContentTemplate 的使用


    <Window x:Class="WpfApplication1.Window38"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:WpfApplication1"
    Title="Window38" Height="227" Width="269">
    <Window.Resources>
    <!--数据对象-->
    <local:Student38 x:Key="stu" Id="1" Skill="WPF" Name="Timothy" HasJob="True"></local:Student38>
    <!--DataTemplate-->
    <DataTemplate x:Key="dtStu">
    <Border BorderBrush="Orange" BorderThickness="2" CornerRadius="5">
    <StackPanel>
    <TextBlock Text="{Binding Id}" Margin="5"></TextBlock>
    <TextBlock x:Name="txtBlockName" Text="{Binding Name}" Margin="5"></TextBlock>
    <TextBlock Text="{Binding Skill}" Margin="5"></TextBlock>
    </StackPanel>
    </Border>
    </DataTemplate>
    </Window.Resources>
    <!--主窗体布局-->
    <StackPanel>
    <ContentPresenter x:Name="cp" Content="{StaticResource stu}" ContentTemplate="{StaticResource dtStu}" Margin="5">

    </ContentPresenter>
    <Button Content="Find" Margin="5,0" Click="Button_Click">

    </Button>
    </StackPanel>
    </Window>

    -----------------------------------------------------------------------------------------------------

  • 相关阅读:
    gdb调试工具
    一步步理解Linux之中断和异常
    英语感受 5月份英语思维
    2013年6月4日星期二
    2013年5月29日星期三
    2013年6月3日星期一
    第22周六晚上
    2013年5月26日星期日
    2013年5月28日20:16:21
    2013年6月2日星期日
  • 原文地址:https://www.cnblogs.com/bruce1992/p/14152437.html
Copyright © 2020-2023  润新知