31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Window
|
|
x:Class="MangaReader.WinUI.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:MangaReader.WinUI"
|
|
xmlns:views="using:MangaReader.WinUI.Views"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d"
|
|
Title="MangaReader.WinUI">
|
|
|
|
<Window.SystemBackdrop>
|
|
<MicaBackdrop />
|
|
</Window.SystemBackdrop>
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<views:SearchView></views:SearchView>
|
|
<!--<StackPanel Orientation="Vertical">
|
|
<StackPanel Orientation="Horizontal" Spacing="10">
|
|
<TextBox Name="KeywordTextBox" Width="300"></TextBox>
|
|
<Button Content="Search" Click="Button_Click"></Button>
|
|
</StackPanel>
|
|
<Image Name="CoverImage" Width="256" Height="364" Source="https://mangadex.org/covers/a920060c-7e39-4ac1-980c-f0e605a40ae4/07d02b26-cbd0-4323-8774-9d83579863d5.jpg.256.jpg"></Image>
|
|
</StackPanel>-->
|
|
</Grid>
|
|
</Window>
|