定义页面全局变量

在mainpage.XAML中定义和使用

定义方法

    <Page.Resources>

        <!-- TODO: Delete this line if the key AppName is declared in App.xaml -->
        <x:String x:Key="AppName">HelloWorld</x:String>
    </Page.Resources>

使用方法

   <TextBlock x:Name="pageTitle" Grid.Column="1" Text="{StaticResource AppName}" Style="{StaticResource PageHeaderTextStyle}"/>

 

 

你可能感兴趣的:(全局变量)