Files
ShrlAlgoToolkit/WPFluent.Gallery/Views/Pages/MediaPage.xaml
2025-05-05 17:04:06 +08:00

32 lines
1.3 KiB
XML

<Page
x:Class="WPFluent.Gallery.Views.Pages.MediaPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:WPFluent.Gallery.Controls"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:models="clr-namespace:WPFluent.Gallery.Models"
xmlns:pages="clr-namespace:WPFluent.Gallery.Views.Pages"
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
mc:Ignorable="d"
d:DataContext="{d:DesignInstance pages:MediaPage,
IsDesignTimeCreatable=False}"
Foreground="{DynamicResource TextFillColorPrimaryBrush}"
Title="MediaPage"
>
<ui:StackPanel Orientation="Horizontal" Spacing="5">
<Image
Height="200"
HorizontalAlignment="Left"
Source="pack://application:,,,/WPFluent.Gallery;component/Assets/pexels-johannes-plenio-1103970.jpg" />
<ui:Image
Height="200"
HorizontalAlignment="Left"
BorderBrush="#33000000"
BorderThickness="2"
CornerRadius="4"
Source="pack://application:,,,/WPFluent.Gallery;component/Assets/pexels-johannes-plenio-1103970.jpg" />
</ui:StackPanel>
</Page>