chovy-sign/ChovySign-GUI/MainWindow.axaml

28 lines
891 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"
xmlns:Settings="clr-namespace:ChovySign_GUI.Settings"
mc:Ignorable="d" d:DesignWidth="850" d:DesignHeight="760"
MinHeight="760"
2023-04-19 13:40:05 +00:00
x:Class="ChovySign_GUI.MainWindow"
2023-04-23 08:15:11 +00:00
Title="Chovy Sign V2" Icon="/ICON.PNG">
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 One">
2023-04-21 06:21:21 +00:00
<Ps1:Ps1Tab Name="ps1Tab"/>
2023-04-19 13:40:05 +00:00
</TabItem>
<TabItem Header="Settings">
<Settings:SettingsTab Name="settingsTab"/>
</TabItem>
2023-04-21 06:21:21 +00:00
</TabControl>
</Grid>
2023-04-19 13:40:05 +00:00
</Window>