0

我正在使用 WPF 和 C#。我正在尝试创建一个包含关闭按钮的自定义 TabItem。我确实遵循了一个教程并设法让它工作 - 但是我想使用图像作为我的关闭按钮。在尝试这个时,我遇到了一些例外。

System.Deployment.dll 中出现“System.Deployment.Application.InvalidDeploymentException”类型的第一次机会异常 mscorlib.dll 中出现“System.IO.DirectoryNotFoundException”类型的第一次机会异常“System.IO”类型的第一次机会异常PresentationCore.dll 中发生 .DirectoryNotFoundException 类型“System.IO.DirectoryNotFoundException”的第一次机会异常发生在 mscorlib.dll 中

我相信这是在抱怨找不到图像源。要设置图像源,我使用属性窗格并在源下拉菜单中选择适当的资源。这应该没问题,但它根本不合适。

我想知道是否有人可以告诉我该怎么做?这很奇怪,因为如果它说找不到资源,那么资源就在那里。我使用 Resources.resx 添加了图像,并将它们添加到我的 Resources 文件夹中。这一切都在那里......只是我的 XAML 不喜欢它。

这是我的 XAML

<UserControl x:Class="WpfApplication1.CloseableHeader"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
  xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
  mc:Ignorable="d" 
  d:DesignHeight="23" d:DesignWidth="81" Margin="0">
<UserControl.Resources>
    <Style TargetType="Button" x:Key="close_hover">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type Button}">
                    <Image Source="pack://siteoforigin:,,,/Resources/CloseIco.png" />
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
    <Style TargetType="Button" x:Key="close_normal">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type Button}">
                    <Image Source="pack://siteoforigin:,,,/Resources/CloseIco_BW.png" />
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</UserControl.Resources>
<Grid>
    <Button
        Name="button_close"
        ToolTip="Close"
        HorizontalAlignment="Right"
        VerticalAlignment="Center"
        Margin="0,0,5,0"
        Width="14"
        Height="14"
        Style="{DynamicResource close_normal}"/>
    <Label Content="TabItem"  Height="23" HorizontalAlignment="Left" 
      Margin="4,1,0,0" Name="label_TabTitle" VerticalAlignment="Top" 
      FontFamily="Courier" FontSize="12" />
</Grid>

我还应该注意,在 Visual Studio 的设计器视图中,它会按应有的方式显示选项卡(带有图像!)。

提前致谢。


更新


我现在在我的项目中走得更远,我面临的唯一问题是 Visual Studio 上的路径不存在,但是当我调试时 - 它们确实存在。资源文件夹位于 bin/Debug 内,因此图像将在调试时显示...但这意味着我将始终在设计器中出现错误。有没有办法解决这个问题,所以它适用于两者?

这是更新的 XAML(相当大的变化)

<UserControl x:Class="WpfApplication1.CloseableHeader"
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
  xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
  mc:Ignorable="d" 
  d:DesignHeight="23" Margin="0">
<UserControl.Resources>
    <Style TargetType="{x:Type Button}">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="{x:Type Button}">
                    <Border Name="border"
                            BorderThickness="0"
                    >
                        <Border.Background>
                            <ImageBrush ImageSource="pack://siteoforigin:,,,/Resources/CloseIco_BW.png" />
                        </Border.Background>
                    </Border>
                    <ControlTemplate.Triggers>
                        <Trigger Property="IsMouseOver" Value="True">
                            <Setter Property="Background" TargetName="border">
                                <Setter.Value>
                                    <ImageBrush ImageSource="pack://siteoforigin:,,,/Resources/CloseIco.png" />
                                </Setter.Value>
                            </Setter>
                        </Trigger>
                    </ControlTemplate.Triggers>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</UserControl.Resources>
<Grid Background="White">
    <Button
        Name="button_close"
        ToolTip="Close"
        HorizontalAlignment="Right"
        VerticalAlignment="Center"
        Margin="0,0,5,0"
        Width="14"
        Height="14"/>
    <Label Content="TabItem"  Height="23" HorizontalAlignment="Left" 
      Margin="4,1,19,0" Name="label_TabTitle" VerticalAlignment="Top" 
      FontFamily="Courier" FontSize="12" />
</Grid>

4

1 回答 1

0

有一种更简单的方法可以使用Stackpanel组件将图像(或任何您想要的)设置为按钮。此处的按钮将具有“close.ico”作为图标和“关闭”作为水平排列的文本

    <Button Name="button_close">
     <StackPanel Orientation="Horizontal">
      <Image Source="Resources\close.ico" Width="14" Height="14" />
      <TextBlock>
       <Run Text="Close" />
      </TextBlock>
     </StackPanel>
    </Button>

回到您的问题,通过 pack-URI 设置资源地址,除非您使用嵌入式资源/内容构建操作玩一些技巧,否则您不会显示它(实际上是已加载) - 但是您需要为应用程序提供文件; 改用直接链接 (Resources\close.ico)

于 2013-04-14T07:18:36.670 回答