chovy-sign/ChovySign-GUI/MainWindow.axaml

23 lines
709 B
Plaintext
Raw Normal View History

2023-04-19 13:40:05 +00:00
<Window xmlns="https://github.com/avaloniaui"
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"
2023-04-21 06:21:21 +00:00
xmlns:Ps1="clr-namespace:ChovySign_GUI.Ps1"
2023-04-20 08:15:36 +00:00
xmlns:Psp="clr-namespace:ChovySign_GUI.Psp"
2023-04-21 06:21:21 +00:00
mc:Ignorable="d" d:DesignWidth="850" d:DesignHeight="950"
2023-04-19 13:40:05 +00:00
x:Class="ChovySign_GUI.MainWindow"
Title="Chovy Sign V2">
2023-04-21 06:21:21 +00:00
<Grid>
2023-04-19 13:40:05 +00:00
<TabControl>
<TabItem Header="PlayStation Portable">
2023-04-20 08:15:36 +00:00
<Psp:PspTab Name="pspTab"/>
</TabItem>
<TabItem Header="PlayStation 1">
2023-04-21 06:21:21 +00:00
<Ps1:Ps1Tab Name="ps1Tab"/>
2023-04-19 13:40:05 +00:00
</TabItem>
2023-04-21 06:21:21 +00:00
</TabControl>
</Grid>
2023-04-19 13:40:05 +00:00
</Window>