mirror of
https://github.com/claunia/libexeinfo.git
synced 2025-12-16 19:14:24 +00:00
46 lines
2.0 KiB
Plaintext
46 lines
2.0 KiB
Plaintext
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<Panel xmlns="http://schema.picoe.ca/eto.forms" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="500" Height="300">
|
||
|
|
<StackLayout Orientation="Vertical" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Top">
|
||
|
|
<StackLayout Orientation="Horizontal">
|
||
|
|
<StackLayoutItem>
|
||
|
|
<Label ID="lblFlags">Flags</Label>
|
||
|
|
</StackLayoutItem>
|
||
|
|
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||
|
|
<TextBox ID="txtFlags" ReadOnly="True"/>
|
||
|
|
</StackLayoutItem>
|
||
|
|
</StackLayout>
|
||
|
|
<StackLayout Orientation="Horizontal">
|
||
|
|
<StackLayoutItem>
|
||
|
|
<Label ID="lblState">State</Label>
|
||
|
|
</StackLayoutItem>
|
||
|
|
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||
|
|
<TextBox ID="txtState" ReadOnly="True"/>
|
||
|
|
</StackLayoutItem>
|
||
|
|
</StackLayout>
|
||
|
|
<StackLayout Orientation="Horizontal">
|
||
|
|
<StackLayoutItem>
|
||
|
|
<Label ID="lblCoordinates">Coordinates</Label>
|
||
|
|
</StackLayoutItem>
|
||
|
|
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||
|
|
<TextBox ID="txtCoordinates" ReadOnly="True"/>
|
||
|
|
</StackLayoutItem>
|
||
|
|
</StackLayout>
|
||
|
|
<StackLayout Orientation="Horizontal">
|
||
|
|
<StackLayoutItem>
|
||
|
|
<Label ID="lblSize">Size</Label>
|
||
|
|
</StackLayoutItem>
|
||
|
|
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||
|
|
<TextBox ID="txtSize" ReadOnly="True"/>
|
||
|
|
</StackLayoutItem>
|
||
|
|
</StackLayout>
|
||
|
|
<StackLayout Orientation="Horizontal">
|
||
|
|
<StackLayoutItem>
|
||
|
|
<Label ID="lblData">Data pointer</Label>
|
||
|
|
</StackLayoutItem>
|
||
|
|
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
|
||
|
|
<TextBox ID="txtData" ReadOnly="True"/>
|
||
|
|
</StackLayoutItem>
|
||
|
|
</StackLayout>
|
||
|
|
</StackLayout>
|
||
|
|
</Panel>
|