gpt4 book ai didi

wpf - 来自资源的路径作为按钮的内容

转载 作者:行者123 更新时间:2023-12-04 03:28:41 24 4
gpt4 key购买 nike

我要设置ButtonContentPath定义于 Resources .所以我创建了 UserControl , 定义 Path , 二 Brushes和按钮 Style在资源方面......一切都很好。

<UserControl ...>
<UserControl.Resources>
<Path x:Key="PageSmallIcon2" Stretch="Fill" Fill="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Control}}, Path=Foreground}" Stroke="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Control}}, Path=Foreground}" SnapsToDevicePixels="True" Data="F1 M 19,25L 27,25L 27,33L 19,33L 19,25 Z M 19,36L 27,36L 27,44L 19,44L 19,36 Z M 31,25L 57,25L 57,33L 31,33L 31,25 Z M 19,47L 27,47L 27,55L 19,55L 19,47 Z "/>
<SolidColorBrush x:Key="MainColorBrush2" Color="Orange"/>
<SolidColorBrush x:Key="WhiteColorBrush2" Color="WhiteSmoke"/>
<Style x:Key="TransparentButtonStyle2" TargetType="{x:Type Button}">
<Setter Property="Foreground" Value="{StaticResource WhiteColorBrush2}"/>
<Setter Property="Height" Value="25"/>
<Setter Property="Width" Value="25"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid>
<Rectangle Fill="Transparent"/>
<ContentPresenter x:Name="contentPresenter" Content="{TemplateBinding Content}" Margin="2" />
</Grid>
<ControlTemplate.Triggers>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Foreground" Value="{StaticResource MainColorBrush2}"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</UserControl.Resources>
<Grid>
<Button Command="{Binding Path=SmallPageSizeCommand}" Style="{StaticResource TransparentButtonStyle2}" Content="{StaticResource PageSmallIcon2}"/>
...
</Grid>
</UserControl>

我决定将这些资源单独放在 ResourceDictionaries .我打算要更多 PathsBrushes ...我也希望按钮只有一种样式。基本上我是这样做的,因为我的每个按钮都有样式, Path对于每个特定 Button是其中的一部分 ButtonControlTemplate .

所以我创建了三个 ResourceDictionaries Colors.xaml , Icons.xamlControls.xaml然后我更新了 App.xaml
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Theme/Colors.xaml"/>
<ResourceDictionary Source="Theme/Icons.xaml"/>
<ResourceDictionary Source="Theme/Controls.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>

现在 PathFill当我按下 Button 时,属性未更新.任何人都可以解释为什么它在单独的 ResourceDictionaries 中不起作用并为我提供解决此问题的方法?

更新

所以我发现问题出在 Path .当我有了那个 Path<UserControl.Resources> , 颜色在 Colors.xaml和按钮样式 Controls.xaml一切正常。

我还发现,当我有我的 PathIcons.xaml我在 UserControl 中使用它作为按钮的内容
<Button Command="{Binding Path=SmallPageSizeCommand}" Style="{StaticResource TransparentButtonStyle2}" Content="{StaticResource PageSmallIcon2}"/>

我的 UserControl 有多个实例... 然后 Path仅存在于 UserControl 的一个实例中一次。

最佳答案

的原因:

I have multiple instances of my UserControl... then Path is present only in one instance of a UserControl at a time



是因为您在 XAML 中为相同的 Element 赋予了不同的父级。您正在设置多个 Button 的内容控制到 Path Shape这是在资源中定义的。出于优化目的,对资源的每个引用默认将返回对象的相同实例,并且由于在 WPF 中,每个元素一次只能有一个父元素,只有最后一个 Button在您的 XAML 声明中将其内容设置为所需的 Path .
要解决此问题,您可以使用 x:Shared="False"属性标记资源。在这种情况下,XAML 解析器将为每个引用生成 Path 元素的新实例。

关于wpf - 来自资源的路径作为按钮的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16671969/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com