在 Visual Studio 2012 和 Blend 4 中,我都设法“锁定”了画笔窗格。它被黄色边框包围,就像它被绑定一样。据我所知,这发生在每个用户控件以及每个具有画笔属性的对象上。我创建了一个新的用户控件,添加了一个矩形,没有任何绑定,并且画笔窗格是黄色并被锁定。
<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"
x:Class="PlayCentralPrototype.Sandbox"
x:Name="Window"
Width="1000" Height="880">
<Grid x:Name="LayoutRoot">
<Rectangle Fill="#FF123456" HorizontalAlignment="Left" Height="125" Margin="99,55,0,0" VerticalAlignment="Top" Width="165"/>
</Grid>
</UserControl>