我在 Window.Resources 中放置了我的图像的样式:
<Style TargetType="{x:Type Image}">
<Style.Triggers>
<Trigger Property="IsEnabled" Value="False">
<Setter Property="Opacity" Value="0.3" />
</Trigger>
</Style.Triggers>
</Style>
我有一个工具栏:
<ToolBarTray DockPanel.Dock="Top" Background="Transparent">
<ToolBar Band="0" BandIndex="0" x:Name="ToolbarCATIAAccess" Background="{DynamicResource linearGradBrushHellaTitanMenu}">
<Button Name="ButtonInsertIntoProduct">
<Image x:Name="ImageInsertIntoProduct" Source="/HKBEStandardsFromPDMLibrary;component/Resources/InsertIntoCATIAProduct.png"
ToolTip="insert files into active CATIA Product"/>
</Button>
<Button Name="ButtonCopyFilesToWIN">
<Image x:Name="ImageCopyFilesToWIN" Source="/HKBEStandardsFromPDMLibrary;component/Resources/CopyFilesToWIN.png"
ToolTip="copy files to WIN folder"></Image>
</Button>
</ToolBar>
</ToolBarTray>
这种风格适用于整个窗口上的所有图像,也适用于其他应用程序。但它不适用于工具栏中的第一个图像,无论哪个先出现都没有关系,第一个不设置不透明度。如果我将隐藏的(按钮)图像作为第一个图像添加到工具栏中,它适用于第一个可见的图像。
...
<Button Name="ButtonCopyFilesToWIN_" Visibility="Collapsed">
<Image x:Name="ImageCopyFilesToWIN_" Source="/HKBEStandardsFromPDMLibrary;component/Resources/CopyFilesToWIN.png"
ToolTip="copy files to WIN folder"></Image>
</Button>
<Button Name="ButtonInsertIntoProduct">
<Image x:Name="ImageInsertIntoProduct" Source="/HKBEStandardsFromPDMLibrary;component/Resources/InsertIntoCATIAProduct.png"
ToolTip="insert files into active CATIA Product"/>
</Button>
...
这里有没有人知道可能是什么问题并可以帮助我?谢谢