如何从Freezable派生的WPF对象在XAML中被冻结?

时间:2009-04-28 21:26:41

标签: wpf performance xaml freezable

WPF中的许多类型派生自Freezable。它为可变POCO对象提供了不变性,并允许在某些情况下提高性能。

所以我的问题是,如何在XAML标记中冻结对象?

(请注意,我也发布了similar but different question

2 个答案:

答案 0 :(得分:42)

要冻结标记中声明的Freezable对象,请使用XML命名空间Freeze中定义的http://schemas.microsoft.com/winfx/2006/xaml/presentation/options属性。

在以下示例中,SolidColorBrush被声明为页面资源并被冻结。然后用它来设置按钮的背景。

<Page 
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:po="http://schemas.microsoft.com/winfx/2006/xaml/presentation/options" 
  xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  mc:Ignorable="po">

  <Page.Resources>
    <!-- This brush is frozen -->
    <SolidColorBrush x:Key="MyBrush" po:Freeze="True" Color="Red" />
  </Page.Resources>

  <!-- Use the frozen brush -->
  <Button Background="{StaticResource MyBrush}">Click Me</Button>

</Page>

来源:Freezable Objects Overview

答案 1 :(得分:11)

将此添加到您的xaml名称空间声明:

xmlns:po="http://schemas.microsoft.com/winfx/2006/xaml/presentation/options"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="po"

然后,在freezable对象中,包含此属性

po:Freeze="True"