WPF中的许多类型派生自Freezable
。它为可变POCO对象提供了不变性,并允许在某些情况下提高性能。
所以我的问题是,如何在XAML标记中冻结对象?
(请注意,我也发布了similar but different question。
答案 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>
答案 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"