如何在Windows 10上为WPF应用程序的工具栏找到默认图标?

时间:2019-03-20 23:34:06

标签: wpf windows-10 wpf-controls wpftoolkit

Editing Commandsthis的Microsoft文档的WPF部分在RichTextBox顶部显示了一个工具栏,带有用于Bullets, Numbering, Indents etc的默认图标。但是文档没有描述这些图标在系统上的位置。当我将他们的XAML复制到我的项目中时,将显示以下错误。 问题:如何在Windows 10上找到这些图标(如下图所示)?

错误 [我项目中XAML页面的屏幕快照。单击图像以获得更好的视图]:

enter image description here

来自Microsoft Example 的图片:

enter image description here

1 个答案:

答案 0 :(得分:0)

图像修补程序应使用斜杠(/)而不是反斜杠()。 图片应位于项目根目录下的“图片”文件夹中。

enter image description here

<Window x:Class="RichTextBoxInputPanelDemo.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Height="400" Width="600"
>
  <Grid>

    <!-- Set the styles for the tool bar. -->
    <Grid.Resources>
      <Style TargetType="{x:Type Button}" x:Key="formatTextStyle">
        <Setter Property="FontFamily" Value="Palatino Linotype"></Setter>
        <Setter Property="Width" Value="30"></Setter>
        <Setter Property="FontSize" Value ="14"></Setter>
        <Setter Property="CommandTarget" Value="{Binding ElementName=mainRTB}"></Setter>
      </Style>

      <Style TargetType="{x:Type Button}" x:Key="formatImageStyle">
        <Setter Property="Width" Value="30"></Setter>
        <Setter Property="CommandTarget" Value="{Binding ElementName=mainRTB}"></Setter>
      </Style>
    </Grid.Resources>

    <DockPanel Name="mainPanel">

      <!-- This tool bar contains all the editing buttons. -->
      <ToolBar Name="mainToolBar" Height="30" DockPanel.Dock="Top">

        <Button Style="{StaticResource formatImageStyle}" Command="ApplicationCommands.Cut" ToolTip="Cut">
          <Image Source="Images/EditCut.png"></Image>
        </Button>


      </ToolBar>

      <!-- By default pressing tab moves focus to the next control. Setting AcceptsTab to true allows the 
           RichTextBox to accept tab characters. -->
      <RichTextBox Name="mainRTB" AcceptsTab="True"></RichTextBox>
    </DockPanel>
  </Grid>
</Window>