15

我的 XAML 代码是这样的:

<Window
    xmlns                 ='http://schemas.microsoft.com/netfx/2007/xaml/presentation'
    xmlns:x               ='http://schemas.microsoft.com/winfx/2006/xaml'
    Title                 ='Print Preview - More stuff here'
    Height                ='200'
    Width                 ='300'
    WindowStartupLocation ='CenterOwner'>
    <DocumentViewer Name='dv1' ... />
</Window>

如何在 XAML 或 C# 中消除搜索框?

4

7 回答 7

18

您可以做一些类似于Cheeso 的答案的事情,其中​​包含一个样式ContentControl和一个触发器以在名称为 时隐藏它PART_FindToolBarHost

<DocumentViewer>
  <DocumentViewer.Resources>
    <Style TargetType="ContentControl">
      <Style.Triggers>
        <Trigger Property="Name" Value="PART_FindToolBarHost">
          <Setter Property="Visibility" Value="Collapsed" />
        </Trigger>
      </Style.Triggers>
    </Style>
  </DocumentViewer.Resources>
</DocumentViewer>
于 2013-01-11T21:57:02.623 回答
15

Vlad 的回答让我了解如何以编程方式获取包含查找工具栏的 ContentControl。我真的不想为 DocumentViewer 编写一个全新的模板。我只想更改(隐藏)一个控件。这将问题减少到如何检索通过模板应用的控件?.
这是我发现的:

  Window window = ... ; 
  DocumentViewer dv1 = LogicalTreeHelper.FindLogicalNode(window, "dv1") as DocumentViewer;
  ContentControl cc = dv1.Template.FindName("PART_FindToolBarHost", dv1) as ContentControl;
  cc.Visibility = Visibility.Collapsed;
于 2010-02-24T02:28:55.550 回答
6

正如 Vlad 指出的那样,您可以替换控件模板。不幸的是,MSDN 上提供的控件模板并不是控件使用的真正的控件模板DocumentViewer。这是修改为通过设置隐藏搜索栏的正确Visibility="Collapsed"模板PART_FindToolBarHost

<!-- DocumentViewer style with hidden search bar. -->
<Style TargetType="{x:Type DocumentViewer}" xmlns:Documents="clr-namespace:System.Windows.Documents;assembly=PresentationUI">
  <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.WindowTextBrushKey}}"/>
  <Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"/>
  <Setter Property="FocusVisualStyle" Value="{x:Null}"/>
  <Setter Property="ContextMenu" Value="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerContextMenu, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}"/>
  <Setter Property="Template">
    <Setter.Value>
      <ControlTemplate TargetType="{x:Type DocumentViewer}">
        <Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Focusable="False">
          <Grid Background="{TemplateBinding Background}" KeyboardNavigation.TabNavigation="Local">
            <Grid.ColumnDefinitions>
              <ColumnDefinition Width="*"/>
            </Grid.ColumnDefinitions>
            <Grid.RowDefinitions>
              <RowDefinition Height="Auto"/>
              <RowDefinition Height="*"/>
              <RowDefinition Height="Auto"/>
            </Grid.RowDefinitions>
            <ContentControl Grid.Column="0" Focusable="{TemplateBinding Focusable}" Grid.Row="0" Style="{DynamicResource {ComponentResourceKey ResourceId=PUIDocumentViewerToolBarStyleKey, TypeInTargetAssembly={x:Type Documents:PresentationUIStyleResources}}}" TabIndex="0"/>
            <ScrollViewer x:Name="PART_ContentHost" CanContentScroll="true" Grid.Column="0" Focusable="{TemplateBinding Focusable}" HorizontalScrollBarVisibility="Auto" IsTabStop="true" Grid.Row="1" TabIndex="1"/>
            <DockPanel Grid.Row="1">
              <FrameworkElement DockPanel.Dock="Right" Width="{DynamicResource {x:Static SystemParameters.VerticalScrollBarWidthKey}}"/>
              <Rectangle Height="10" Visibility="Visible" VerticalAlignment="top">
                <Rectangle.Fill>
                  <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
                    <LinearGradientBrush.GradientStops>
                      <GradientStopCollection>
                        <GradientStop Color="#66000000" Offset="0"/>
                        <GradientStop Color="Transparent" Offset="1"/>
                      </GradientStopCollection>
                    </LinearGradientBrush.GradientStops>
                  </LinearGradientBrush>
                </Rectangle.Fill>
              </Rectangle>
            </DockPanel>
            <ContentControl x:Name="PART_FindToolBarHost" Grid.Column="0" Focusable="{TemplateBinding Focusable}" Grid.Row="2" TabIndex="2" Visibility="Collapsed"/>
          </Grid>
        </Border>
      </ControlTemplate>
    </Setter.Value>
  </Setter>
</Style>

您需要添加对PresentationUI.dll. 此程序集位于文件夹中%WINDIR%\Microsoft.NET\Framework\v4.0.30319\WPF

于 2012-01-17T20:07:42.017 回答
4

您可以为其替换控件模板。供您参考:默认DocumentViewer的控件模板在这里:http: //msdn.microsoft.com/en-us/library/aa970452.aspx

搜索工具栏的名称是PART_FindToolBarHost,因此您也可以将其分配VisibilityCollapsed


编辑:
正如@Martin 的评论所暗示的,MSDN 中的控制模板(上面引用)并不完全正确。提取默认情况下实际在 WPF 中使用的模板的更好方法是使用 Blend(如果我没记错的话,请在上下文菜单中编辑控件模板)。

于 2010-02-24T00:03:31.320 回答
2

为了让 Cheeso 的答案在构造函数中工作,我必须添加:

dv1.ApplyTemplate();

否则 cc 出来为空。在这里查看答案

于 2012-02-14T00:43:12.503 回答
2
 <DocumentViewer>
     <DocumentViewer.Resources>
         <!-- Toolbar -->          
         <Style TargetType="ToolBar">
             <Setter Property="Visibility" Value="Collapsed" />
         </Style>
          <!-- Search -->
         <Style TargetType="ContentControl">
             <Setter Property="Visibility" Value="Collapsed" />
         </Style>
     </DocumentViewer.Resources>
</DocumentViewer>
于 2017-09-04T07:08:33.703 回答
0

你确定你需要一个DocumentViewer吗?您可以改用FlowDocumentScrollViewer,或者如果您喜欢分页或多列显示,您可以使用FlowDocumentPageViewer

于 2010-02-24T01:27:23.990 回答