2018-02-25 02:53:18 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<Form xmlns="http://schema.picoe.ca/eto.forms" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="ExeInfo GUI" ClientSize="400, 350" Padding="10">
|
|
|
|
|
<StackLayout Orientation="Vertical">
|
|
|
|
|
<StackLayoutItem HorizontalAlignment="Stretch">
|
|
|
|
|
<StackLayout Orientation="Horizontal">
|
|
|
|
|
<Label ID="lblFile">File:</Label>
|
|
|
|
|
<StackLayoutItem Expand="True">
|
|
|
|
|
<TextBox ID="txtFile" ReadOnly="True" />
|
|
|
|
|
</StackLayoutItem>
|
|
|
|
|
<StackLayoutItem HorizontalAlignment="Right">
|
|
|
|
|
<Button ID="btnLoad" Click="OnBtnLoadClick">Load</Button>
|
|
|
|
|
</StackLayoutItem>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</StackLayoutItem>
|
|
|
|
|
<StackLayoutItem HorizontalAlignment="Stretch">
|
|
|
|
|
<StackLayout Orientation="Horizontal">
|
|
|
|
|
<Label ID="lblType">Type:</Label>
|
|
|
|
|
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
|
|
|
|
|
<TextBox ID="txtType" ReadOnly="True" />
|
|
|
|
|
</StackLayoutItem>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</StackLayoutItem>
|
2018-02-26 02:23:30 +00:00
|
|
|
<StackLayoutItem HorizontalAlignment="Stretch">
|
|
|
|
|
<StackLayout Orientation="Horizontal">
|
|
|
|
|
<Label ID="lblArch">Architectures:</Label>
|
|
|
|
|
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
|
|
|
|
|
<ComboBox ID="cmbArch" ReadOnly="True" />
|
|
|
|
|
</StackLayoutItem>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</StackLayoutItem>
|
2018-02-26 04:14:40 +00:00
|
|
|
<StackLayoutItem HorizontalAlignment="Stretch">
|
|
|
|
|
<StackLayout Orientation="Horizontal">
|
|
|
|
|
<Label ID="lblOs">Required operating system:</Label>
|
|
|
|
|
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
|
|
|
|
|
<TextBox ID="txtOs" ReadOnly="True" />
|
|
|
|
|
</StackLayoutItem>
|
|
|
|
|
<Label ID="lblSubsystem" Visible="False">Subsystem:</Label>
|
|
|
|
|
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
|
|
|
|
|
<TextBox ID="txtSubsystem" ReadOnly="True" Visible="False" />
|
|
|
|
|
</StackLayoutItem>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</StackLayoutItem>
|
2018-02-25 02:53:18 +00:00
|
|
|
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
|
2018-02-27 21:33:43 +00:00
|
|
|
<TabControl ID="tabMain">
|
|
|
|
|
<TabPage Text="Information">
|
|
|
|
|
<StackLayout Orientation="Vertical">
|
|
|
|
|
<StackLayoutItem HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Expand="True">
|
|
|
|
|
<TextArea ID="txtInformation" ReadOnly="True" />
|
|
|
|
|
</StackLayoutItem>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
</TabPage>
|
|
|
|
|
</TabControl>
|
2018-02-25 02:53:18 +00:00
|
|
|
</StackLayoutItem>
|
|
|
|
|
</StackLayout>
|
|
|
|
|
<Form.Menu>
|
|
|
|
|
<MenuBar>
|
|
|
|
|
<MenuBar.QuitItem>
|
|
|
|
|
<ButtonMenuItem ID="mnuQuit" Text="Quit" Shortcut="CommonModifier+Q" Click="OnMnuQuitClick" />
|
|
|
|
|
</MenuBar.QuitItem>
|
|
|
|
|
<MenuBar.AboutItem>
|
|
|
|
|
<ButtonMenuItem ID="mnuAbout" Text="About..." Click="OnMnuAboutClick" />
|
|
|
|
|
</MenuBar.AboutItem>
|
|
|
|
|
</MenuBar>
|
|
|
|
|
</Form.Menu>
|
|
|
|
|
</Form>
|