This repository has been archived on 2025-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
Files
CICMMetadata/pnlStrings.xeto
Natalia Portillo 7f040db5a5 Use libexeinfo to retrieve strings and version from found executable files.
Find possible readme files.
Present all of that information to the user as a way to fill fields when adding an application.
2018-03-17 21:56:18 +00:00

56 lines
2.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<Panel xmlns="http://schema.picoe.ca/eto.forms" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackLayout Orientation="Horizontal">
<StackLayoutItem VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Expand="True">
<StackLayout Orientation="Vertical">
<StackLayoutItem>
<Label>Strings found in executables</Label>
</StackLayoutItem>
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<GridView ID="treeStrings"/>
</StackLayoutItem>
</StackLayout>
</StackLayoutItem>
<StackLayoutItem>
<StackLayout Orientation="Vertical">
<StackLayoutItem>
<Button Click="OnBtnDeveloperClick">Set as developer</Button>
</StackLayoutItem>
<StackLayoutItem>
<Button Click="OnBtnPublisherClick">Set as publisher</Button>
</StackLayoutItem>
<StackLayoutItem>
<Button Click="OnBtnProductClick">Set as product</Button>
</StackLayoutItem>
<StackLayoutItem>
<Button Click="OnBtnVersionClick">Set as version</Button>
</StackLayoutItem>
<StackLayoutItem>
<Label>Developer</Label>
</StackLayoutItem>
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
<TextBox ID="txtDeveloper" ReadOnly="True" />
</StackLayoutItem>
<StackLayoutItem>
<Label>Publisher</Label>
</StackLayoutItem>
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
<TextBox ID="txtPublisher" ReadOnly="True" />
</StackLayoutItem>
<StackLayoutItem>
<Label>Product</Label>
</StackLayoutItem>
<StackLayoutItem Expand="True" HorizontalAlignment="Stretch">
<TextBox ID="txtProduct" ReadOnly="True" />
</StackLayoutItem>
<StackLayoutItem>
<Label>Version</Label>
</StackLayoutItem>
<StackLayoutItem HorizontalAlignment="Stretch" Expand="True">
<TextBox ID="txtVersion" ReadOnly="True" />
</StackLayoutItem>
</StackLayout>
</StackLayoutItem>
</StackLayout>
</Panel>