WPF—ResourceDictionary

作者:追风剑情 发布于:2019-8-16 17:40 分类:C#

一、新建资源字典文件

333.png

444.png

Dictionary1.xaml

  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:local="clr-namespace:WpfTest"
  4. xmlns:sys="clr-namespace:System;assembly=mscorlib">
  5.  
  6. <sys:String x:Key="key001">资源字典string</sys:String>
  7. <Color x:Key="colorkey001">#FF3232</Color>
  8. <SolidColorBrush x:Key="solidBrush001" Color="{StaticResource colorkey001}"/>
  9. <SolidColorBrush x:Key="solidBrush002" Color="#FF707070"/>
  10.  
  11. <BitmapImage x:Key="menu_item_normal">
  12. <BitmapImage.UriSource>
  13. Resources\Image\menu_item_normal.png
  14. </BitmapImage.UriSource>
  15. </BitmapImage>
  16.  
  17. <BitmapImage x:Key="menu_item_over">
  18. <BitmapImage.UriSource>
  19. Resources\Image\menu_item_over.png
  20. </BitmapImage.UriSource>
  21. </BitmapImage>
  22. </ResourceDictionary>

App.xaml

  1. <Application x:Class="WpfTest.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:WpfTest"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <ResourceDictionary>
  8. <ResourceDictionary.MergedDictionaries>
  9. <ResourceDictionary x:Name="dic1" Source="Dictionary1.xaml"/>
  10. </ResourceDictionary.MergedDictionaries>
  11. </ResourceDictionary>
  12. </Application.Resources>
  13. </Application>

MainWindow.xaml

  1. <Window
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:WpfTest"
  7. xmlns:Properties="clr-namespace:WpfTest.Properties" x:Class="WpfTest.MainWindow"
  8. mc:Ignorable="d"
  9. Title="MainWindow" Height="450" Width="800">
  10. <Grid>
  11. <Button Background="{StaticResource solidBrush001}" Content="Button" HorizontalAlignment="Left" Margin="20,26.213,0,0" VerticalAlignment="Top" Width="75" Click="Button_Click"/>
  12. <TextBlock x:Name="textBlock" Background="{StaticResource solidBrush002}" Text="{StaticResource key001}" HorizontalAlignment="Left" Margin="114.8,30.213,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="115.2"/>
  13. <Image x:Name="img" Width="100" Source="{StaticResource menu_item_normal}" Margin="20,60,673.6,330.413"/>
  14. </Grid>
  15. </Window>

MainWindow.xaml.cs

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Data;
  8. using System.Windows.Documents;
  9. using System.Windows.Input;
  10. using System.Windows.Media;
  11. using System.Windows.Media.Imaging;
  12. using System.Windows.Navigation;
  13. using System.Windows.Shapes;
  14. using System.ComponentModel;//INotifyPropertyChanged
  15.  
  16. namespace WpfTest
  17. {
  18. /// <summary>
  19. /// MainWindow.xaml 的交互逻辑
  20. /// </summary>
  21. public partial class MainWindow : Window
  22. {
  23. public MainWindow()
  24. {
  25. InitializeComponent();
  26. }
  27.  
  28. private void Button_Click(object sender, RoutedEventArgs e)
  29. {
  30. BitmapImage menu_item_normal = this.FindResource("menu_item_over") as BitmapImage;
  31. this.img.Source = menu_item_normal;
  32. }
  33. }
  34. }

运行测试

1111.png2222.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号