码迷,mamicode.com
首页 > 其他好文 > 详细

StaticResource和DynamicResource使用

时间:2019-09-01 01:26:35      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:bsp   date   block   text   click   ext   ons   class   res   

    <Window.Resources>
        <TextBlock x:Key="Res1" Text="海上生明月"/>
        <TextBlock x:Key="Res2" Text="海上生明月"/>
    </Window.Resources>
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="*"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="*"/>
            <ColumnDefinition Width="*"/>
        </Grid.ColumnDefinitions>
        <Button Grid.Column="0" Grid.Row="0" Content="{StaticResource Res1}"/>
        <Button Grid.Column="1" Grid.Row="0" Content="{DynamicResource Res2}"/>
        <Button Grid.Column="1" Grid.Row="1" Content="UpDate" Click="Button_Click"/>
    </Grid>

 

StaticResource和DynamicResource使用

标签:bsp   date   block   text   click   ext   ons   class   res   

原文地址:https://www.cnblogs.com/liuxinyong/p/11440936.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!