我遇到与WPF样式有关的问题。 让我们使用class(或准备这样的)来包含DependencyProperty。
public class MyProperty : DependencyObject
{
public static readonly DependencyProperty exampleValueProperty = DependencyProperty.Register("exampleValue", typeof(bool), typeof(MyProperty));
public bool exampleValue
{
get { return (bool)this.GetValue(exampleValueProperty); }
set { this.SetValue(exampleValueProperty, value); }
}
}
public class MyTextBlock : TextBlock
{
public static readonly DependencyProperty myPropertyProperty= DependencyProperty.Register(
"myProperty", typeof(MyProperty), typeof(MyTextBlock));
public MyProperty myProperty
{
get
{
return (MyProperty)this.GetValue(myPropertyProperty);
}
set
{
this.SetValue(myPropertyProperty, value);
}
}
}
现在在xaml文件中定义样式并在我的主窗口网格上放置MyTextBlock类的2个对象:
<Window x:Class="WpfApplication1.MainWindow"
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"
xmlns:local="clr-namespace:WpfApplication1"
xmlns:custom="clr-namespace:WpfCustomControlLibrary1;assembly=WpfCustomControlLibrary1"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<ResourceDictionary>
<Style TargetType="{x:Type custom:MyTextBlock}">
<Setter Property="Background" Value="Aqua" />
<Setter Property="myProperty">
<Setter.Value>
<custom:MyProperty exampleValue="true" />
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
</Window.Resources>
<Grid RenderTransformOrigin="0.514,0.47" Margin="100,0,0,0">
<custom:MyTextBlock x:Name="textBlock1" Height="80" Width="80" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,104,62.8,0" />
<custom:MyTextBlock x:Name="textBlock2" Height="80" Width="80" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,200,62.8,0" />
</Grid>
</Window>
现在问题是,当我使用:
更改exampleValue为false时textBlock1.myProperty.exampleValue = false;
还为textBlock2更改了exampleValue。
正如我所看到的,textBlock1.myProperty和textBlock2.myProperty都返回相同的hashCode。 可能这是因为我们首先创建myProperty的一个对象,然后Setter将它(复制)分配给每个MyTextBlock对象。 有没有办法在这里使用克隆?那么每个对象都有自己的“myProperty”?
我知道如果我为每个对象定义我的属性(但它看起来像是解决方法,而不是解决方案),这个会正常工作:
<custom:MyTextBlock x:Name="textBlock1" Height="80" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,104,62.8,0">
<custom:MyTextBlock.myProperty>
<custom:MyProperty exampleValue="False"/>
</custom:MyTextBlock.myProperty>
</custom:MyTextBlock>
<custom:MyTextBlock x:Name="textBlock2" Height="80" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0,200,62.8,0">
<custom:MyTextBlock.myProperty>
<custom:MyProperty exampleValue="False"/>
</custom:MyTextBlock.myProperty>
</custom:MyTextBlock>
答案 0 :(得分:1)
它与“MyProperty”的实例相同,因为您将其创建为资源。 默认情况下,资源是共享/静态的。 也许将“x:Shared”设置为false可能会有所帮助:
<ResourceDictionary>
<Style TargetType="{x:Type custom:MyTextBlock}" x:Shared="false">
<Setter Property="Background" Value="Aqua" />
<Setter Property="myProperty">
<Setter.Value>
<custom:MyProperty exampleValue="true" />
</Setter.Value>
</Setter>
</Style>
</ResourceDictionary>
无论如何我不确定它是否能解决问题,因为它是MyTextBlock控件的默认无键样式,无论如何它都可能被缓存。
如果它有效,那么每个MyTextBlock控件都有一个MyProperty实例,但仍然具有“exampleValue”的相同值。
编辑:抱歉没有看到@Brannon的评论;)