/
githubmirror
/
Files
Обзор
Документация
Войти
/
githubmirror
/
Files
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Files.App/Dialogs/FileTooLargeDialog.xaml
33 строки
1 KB
Yair
Code Quality: Updated license header
31 дек 2024, 05:03
31 дек 2024, 05:03
8436c6d
Код
Авторство
О чём код?
<!-- Copyright (c) Files Community. Licensed under the MIT License. --> <ContentDialog x:Class="Files.App.Dialogs.FileTooLargeDialog" 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:helpers="using:Files.App.Helpers" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" Title="{helpers:ResourceString Name=CopyFailureFileToLarge}" CornerRadius="{StaticResource OverlayCornerRadius}" DefaultButton="Primary" HighContrastAdjustment="None" PrimaryButtonText="{helpers:ResourceString Name=OK}" RequestedTheme="{x:Bind RootAppElement.RequestedTheme, Mode=OneWay}" Style="{StaticResource DefaultContentDialogStyle}" mc:Ignorable="d"> <ListView MaxHeight="300" ItemsSource="{x:Bind ViewModel.Paths}" SelectionMode="None"> <ListView.ItemTemplate> <DataTemplate x:DataType="x:String"> <TextBlock Padding="4" IsTabStop="False" Text="{x:Bind}" TextWrapping="Wrap" /> </DataTemplate> </ListView.ItemTemplate> </ListView> </ContentDialog>