forked from Slazanger/SMT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
About.xaml
13 lines (13 loc) · 1.25 KB
/
About.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
<Window x:Class="SMT.About"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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"
xmlns:local="clr-namespace:SMT"
mc:Ignorable="d"
Title="Slazangers Map Tool (SMT)" Height="200" Width="400" WindowStartupLocation="CenterOwner" ResizeMode="NoResize">
<Grid>
<Image x:Name="image" HorizontalAlignment="Left" Height="149" Margin="10,10,0,0" VerticalAlignment="Top" Width="172" Source="Images/Slazanger.png" RenderTransformOrigin="0.695,0.632" />
<TextBlock x:Name="textBlock" HorizontalAlignment="Left" Margin="168,10,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Height="149" Width="214"><Run Text="Version "/><Run Text="0.3"/><Run Text="2"/><LineBreak/><Run/><LineBreak/><Run Text="Created By "/><Hyperlink x:Name="SlazLink" NavigateUri="https://evewho.com/pilot/Slazanger"><Run Text="Slazanger"/></Hyperlink><LineBreak/><LineBreak/><Run Text="All Donations, feedback and "/><Run Text="f"/><Run Text="eature requests welcome.. feel free to evemail in game."/></TextBlock>
</Grid>
</Window>