我目前正在使用 Silverlight 2.0 Beta 2 进行测试,我的目标是定义一次资源元素,然后在我的渲染中多次重复使用它。这个简单的示例将一个矩形 (myRect) 定义为资源,然后我尝试重复使用它两次 - 失败并出现错误:
属性 {StaticResource myRect} 值超出范围。[行:9 位置:83]
顺便说一句,这个示例在 WPF 中运行良好。
<UserControl x:Class="ReuseResourceTest.Page"
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="200" Height="200">
<Canvas x:Name="LayoutRoot" Background="Yellow">
<Canvas.Resources>
<RectangleGeometry x:Key="myRect" Rect="25,50,25,50" />
</Canvas.Resources>
<Path Stroke="Black" StrokeThickness="10" Data="{StaticResource myRect}" />
<Path Stroke="White" StrokeThickness="4" Data="{StaticResource myRect}" />
</Canvas>
</UserControl>
关于这里发生了什么的任何想法。
谢谢,
——埃德