mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 17:56:44 +02:00
* Force file pickers to open modal * remove unneeded RTL code * better icons and analyzer suggestions * additions for preview controls * more code improvs * two nits in strings * Adressing feedback icon margin, drive usage bar, TitleBarHeightOption
45 lines
1.6 KiB
XML
45 lines
1.6 KiB
XML
<!-- Copyright (c) Microsoft Corporation and Contributors. -->
|
|
<!-- Licensed under the MIT License. -->
|
|
|
|
<UserControl
|
|
x:Class="Peek.FilePreviewer.Controls.FailedFallbackPreviewControl"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d">
|
|
|
|
<Grid ColumnSpacing="24" RowSpacing="24">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<IconSourceElement
|
|
Grid.Row="0"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Foreground="{StaticResource TextFillColorSecondaryBrush}">
|
|
<IconSourceElement.IconSource>
|
|
<FontIconSource FontSize="128" Glyph="" />
|
|
</IconSourceElement.IconSource>
|
|
</IconSourceElement>
|
|
|
|
<TextBlock
|
|
x:Uid="FailedFallbackTextBlock"
|
|
Grid.Row="1"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
Foreground="{StaticResource TextFillColorSecondaryBrush}"
|
|
TextWrapping="Wrap" />
|
|
|
|
<HyperlinkButton
|
|
x:Uid="FailedFallbackReportBugHyperlinkButton"
|
|
Grid.Row="2"
|
|
HorizontalAlignment="Center"
|
|
VerticalAlignment="Center"
|
|
NavigateUri="https://aka.ms/powerToysReportBug" />
|
|
</Grid>
|
|
</UserControl>
|