02 March 2017

Windows Store và Page: Sử dụng file ResourceDictionary chứa Style thay cho Page.Resources

Yêu cầu: Windows 10 và Visual Studio 2015
- Tạo project App1
 - Tạo foder có tên Custom
- Tạo mới ResourceDictionary 
ResourceDictionary có tên Dictionary1
- Cấu trúc
- Tạo String mới có Key AppName nhằm tái sử dụng lại trong ví dụ này
<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:App1.Custom">

    <x:String x:Key="AppName">My Application</x:String>

</ResourceDictionary>
- Bây giờ chúng ta lưu chữ Custom/Dictionary1.xaml liên kết này trong App.xaml
<Application.Resources>
    <ResourceDictionary Source="Custom/Dictionary1.xaml" />
</Application.Resources>
<TextBlock x:Name="tbName" HorizontalAlignment="Left" Margin="451,351,0,0" 
               TextWrapping="Wrap" Text="{StaticResource AppName}" VerticalAlignment="Top" FontSize="72"/>
- Dưới đây là chuỗi String "My Application" được lấy từ Custom/Dictionary1.xaml

0 nhận xét:

Post a Comment

 

BACK TO TOP

Xuống cuối trang