WPF: Как удалить поле поиска в DocumentViewer?
мой код 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# исключить поле поиска?
7 ответов
Влада заставил меня посмотреть, как программно захватить 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;
вы можете сделать что-то подобное Cheeso это!--5--> стиль для 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>
как отметил Влад, вы можете заменить шаблон управления. К сожалению, шаблон управления, доступный в MSDN, не является реальным шаблоном управления, используемым DocumentViewer
управление. Вот правильный шаблон, измененный, чтобы скрыть строку поиска, установив Visibility="Collapsed"
on 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
.
вы можете заменить шаблон контроля. Для справки: по умолчанию 'управление S-это здесь: http://msdn.microsoft.com/en-us/library/aa970452.aspx
имя панели инструментов поиска -PART_FindToolBarHost
, поэтому вы также можете просто назначить его Visibility
to Collapsed
.
Edit:
Как следует из комментария @Martin, шаблон элемента управления в MSDN (см. выше) не полностью корректен. Лучший способ извлечь шаблон, который фактически используется в WPF по умолчанию будет использовать Blend (Edit Control Template в контекстном меню, если я не ошибаюсь).
чтобы получить ответ Чизо для работы в конструкторе, я должен был добавить:
dv1.ApplyTemplate();
в противном случае cc выходит null. См. ответ здесь
<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>
вы уверены, что вам нужен DocumentViewer? Вы могли бы использовать FlowDocumentScrollViewer вместо этого, или если вам нравится разбиение на страницы или отображение нескольких столбцов, вы можете использовать FlowDocumentPageViewer.