|
| 1 | +<Window x:Class="SimTools.SupportSimTools" |
| 2 | + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| 3 | + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| 4 | + xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| 5 | + xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| 6 | + xmlns:local="clr-namespace:SimTools" |
| 7 | + mc:Ignorable="d" |
| 8 | + Title="SupportSimTools" Height="532" Width="530" WindowStyle="None" AllowsTransparency="True" ResizeMode="NoResize" WindowStartupLocation="CenterScreen"> |
| 9 | + <Window.Background> |
| 10 | + <ImageBrush ImageSource="/Images/TS3_Box2.png"/> |
| 11 | + </Window.Background> |
| 12 | + <Grid> |
| 13 | + <Button x:Name="CloseButton" Content="Button" HorizontalAlignment="Left" Margin="456,480,0,0" VerticalAlignment="Top" Background="{x:Null}" BorderBrush="{x:Null}" Foreground="{x:Null}" Width="24" Height="33" Click="CloseButton_Click"/> |
| 14 | + <TextBlock x:Name="SupportText" HorizontalAlignment="Center" Margin="0,40,0,0" TextWrapping="Wrap" Text="First off, thank you for your interest in supporting SimTools. There are various ways in which you can offer support to the SimTools Project. These include, but are not limited to the following:" VerticalAlignment="Top" FontWeight="Bold" FontFamily="Tahoma" Width="474" Height="44"/> |
| 15 | + <TextBlock x:Name="FiscalSupport" HorizontalAlignment="Center" Margin="0,100,0,0" TextWrapping="Wrap" Text="Fiscally" VerticalAlignment="Top" FontWeight="Bold" FontFamily="Tahoma" Width="474" Height="27" FontSize="18"/> |
| 16 | + <TextBlock x:Name="FiscalSupport2" HorizontalAlignment="Center" Margin="0,125,0,0" TextWrapping="Wrap" Text="I designed SimTools as a hobby, but SimTools does incur monthly hosting costs and annual domain renewals. You can help offset these costs by donating to the project." VerticalAlignment="Top" FontFamily="Tahoma" Width="474" Height="44"/> |
| 17 | + <Button x:Name="PayPalButton" Content="Button" HorizontalAlignment="Left" Margin="89,176,0,0" VerticalAlignment="Top" Width="160" Height="35" BorderBrush="{x:Null}" Foreground="{x:Null}" Click="PayPalButton_Click"> |
| 18 | + <Button.Background> |
| 19 | + <ImageBrush ImageSource="/Images/paypal.png"/> |
| 20 | + </Button.Background> |
| 21 | + </Button> |
| 22 | + <Button x:Name="CashAppButton" Content="Button" HorizontalAlignment="Left" Margin="279,176,0,0" VerticalAlignment="Top" Width="160" Height="35" BorderBrush="{x:Null}" Foreground="{x:Null}" Click="CashAppButton_Click"> |
| 23 | + <Button.Background> |
| 24 | + <ImageBrush ImageSource="/Images/cashapp.png"/> |
| 25 | + </Button.Background> |
| 26 | + </Button> |
| 27 | + <Button x:Name="BMACButton" Content="Button" HorizontalAlignment="Left" Margin="89,226,0,0" VerticalAlignment="Top" Width="160" Height="35" BorderBrush="{x:Null}" Foreground="{x:Null}" Click="BMACButton_Click"> |
| 28 | + <Button.Background> |
| 29 | + <ImageBrush ImageSource="/Images/bmac.png"/> |
| 30 | + </Button.Background> |
| 31 | + </Button> |
| 32 | + <Button x:Name="PatreonButton" Content="Button" HorizontalAlignment="Left" Margin="279,226,0,0" VerticalAlignment="Top" Width="160" Height="35" BorderBrush="{x:Null}" Foreground="{x:Null}" Click="PatreonButton_Click"> |
| 33 | + <Button.Background> |
| 34 | + <ImageBrush ImageSource="/Images/patreon.png"/> |
| 35 | + </Button.Background> |
| 36 | + </Button> |
| 37 | + <TextBlock x:Name="FiscalSupport_Copy" HorizontalAlignment="Center" Margin="0,280,0,0" TextWrapping="Wrap" Text="Contribute" VerticalAlignment="Top" FontWeight="Bold" FontFamily="Tahoma" Width="474" Height="27" FontSize="18"/> |
| 38 | + <TextBlock x:Name="FiscalSupport2_Copy" HorizontalAlignment="Center" TextWrapping="Wrap" Text="You can contribute code to the SimTools GitHub page, or host a file repository mirror. You can also use the language translation tool to help bring new languages to SimTools." VerticalAlignment="Top" FontFamily="Tahoma" Width="474" Height="31" Margin="0,304,0,0"/> |
| 39 | + <Button x:Name="GitHubButton" Content="Button" HorizontalAlignment="Left" Margin="29,346,0,0" VerticalAlignment="Top" Width="150" Height="35" BorderBrush="{x:Null}" Foreground="{x:Null}" Click="GitHubButton_Click"> |
| 40 | + <Button.Background> |
| 41 | + <ImageBrush ImageSource="/Images/github.png"/> |
| 42 | + </Button.Background> |
| 43 | + </Button> |
| 44 | + <Button x:Name="RepoMakerButton" Content="📁 Repo Maker" HorizontalAlignment="Left" Margin="188,346,0,0" VerticalAlignment="Top" Width="151" Height="35" BorderBrush="{x:Null}" Click="RepoMakerButton_Click" Foreground="Black" FontWeight="Bold" FontFamily="Tahoma" FontSize="10"> |
| 45 | + <Button.Background> |
| 46 | + <ImageBrush ImageSource="/Images/button_green.png"/> |
| 47 | + </Button.Background> |
| 48 | + </Button> |
| 49 | + <Button x:Name="TranslationButton" Content="🌐 Translation Tool" HorizontalAlignment="Left" Margin="348,346,0,0" VerticalAlignment="Top" Width="150" Height="35" BorderBrush="{x:Null}" Click="TranslationButton_Click" Foreground="Black" FontFamily="Tahoma" FontSize="10" FontWeight="Bold"> |
| 50 | + <Button.Background> |
| 51 | + <ImageBrush ImageSource="/Images/button_green.png"/> |
| 52 | + </Button.Background> |
| 53 | + </Button> |
| 54 | + |
| 55 | + </Grid> |
| 56 | +</Window> |
0 commit comments