WPF整理--动态绑定到Logical Resource

What happens if we replace a
specific resource? Would that be reflected in all objects using the resource? And if not, can we
bind to the resource dynamically?”

接上篇博文,如果我们需要在C#代码中动态替换某个logical resource,我们该如何做呢?

如,Window的Resources属性赋值如下:

复制代码
<Window x:Class="DynamicallyBindingToALogicalResource.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Window.Resources>
        <LinearGradientBrush x:Key="brush1">
            <GradientStop Offset="0.3" Color="Yellow"/>
            <GradientStop Offset="0.7" Color="Brown"/>
        </LinearGradientBrush>
    </Window.Resources>
    <StackPanel>        
        <Rectangle Height="100" Stroke="Pink" StrokeThickness="20" Fill="{StaticResource brush1}"/>        
        <Button x:Name="button1" Content="Replace Brush" Height="100" Click="OnReplaceBrush"/>
    </StackPanel>
</Window>
复制代码

Button Click事件中Replace Window的key为"brush1"的Resources

复制代码
        private void OnReplaceBrush(object sender, RoutedEventArgs e)
        {
            var brush = new LinearGradientBrush();
            brush.GradientStops.Add(new GradientStop(Colors.Pink, 0.2));
            brush.GradientStops.Add(new GradientStop(Colors.Blue, 0.5));
            brush.GradientStops.Add(new GradientStop(Colors.Violet, 0.8));
            
            this.Resources["brush1"] = brush;
        }
复制代码

点击按钮,程序没有任何反应,可以通过DynamicResource这个markup extension实现。

Run the application and click on the button. You'll notice nothing happens. Now
change the StaticResource markup extension to DynamicResource on the
Rectangle:”

<Rectangle Height="100" Stroke="Violet" StrokeThickness="20" Fill="{DynamicResource brush1}" />


程序运行如下:

点击Button后:

附XAML和C#代码:

复制代码
<Window x:Class="DynamicallyBindingToALogicalResource.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <Window.Resources>
        <LinearGradientBrush x:Key="brush1">
            <GradientStop Offset="0.3" Color="Yellow"/>
            <GradientStop Offset="0.7" Color="Brown"/>
        </LinearGradientBrush>
    </Window.Resources>
    <StackPanel>        
        <Rectangle Height="100" Stroke="Pink" StrokeThickness="20" Fill="{StaticResource brush1}"/>
        <Rectangle Height="100" Stroke="Violet" StrokeThickness="20" Fill="{DynamicResource brush1}" />
        <Button x:Name="button1" Content="Replace Brush" Height="100" Click="OnReplaceBrush"/>
    </StackPanel>
</Window>
View Code
复制代码
复制代码
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace DynamicallyBindingToALogicalResource
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void OnReplaceBrush(object sender, RoutedEventArgs e)
        {
            var brush = new LinearGradientBrush();
            brush.GradientStops.Add(new GradientStop(Colors.Pink, 0.2));
            brush.GradientStops.Add(new GradientStop(Colors.Blue, 0.5));
            brush.GradientStops.Add(new GradientStop(Colors.Violet, 0.8));
            
            this.Resources["brush1"] = brush;
        }
    }
}
View Code
复制代码

 

posted @   DebugLZQ  阅读(673)  评论(0编辑  收藏  举报
编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· 字符编码:从基础到乱码解决
· Open-Sora 2.0 重磅开源!
点击右上角即可分享
微信分享提示