2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

Added github and donate links.

This commit is contained in:
Xjph 2021-06-06 13:53:52 -02:30
parent c1b3a610c3
commit c76152d706
2 changed files with 43 additions and 9 deletions

View File

@ -1,6 +1,7 @@
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Data;
using System.Diagnostics;
using System.Linq;
using Avalonia.Controls;
using Observatory.Framework.Interfaces;
@ -83,6 +84,20 @@ namespace Observatory.UI.ViewModels
}
}
public void OpenGithub()
{
ProcessStartInfo githubOpen = new("https://github.com/Xjph/ObservatoryCore");
githubOpen.UseShellExecute = true;
Process.Start(githubOpen);
}
public void OpenDonate()
{
ProcessStartInfo donateOpen = new("https://paypal.me/eliteobservatory");
donateOpen.UseShellExecute = true;
Process.Start(donateOpen);
}
public string ToggleButtonText
{
get => toggleButtonText;

View File

@ -5,6 +5,15 @@
xmlns:vw="clr-namespace:Observatory.UI.Views"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="Observatory.UI.Views.CoreView">
<UserControl.Styles>
<Style Selector="Button.Hyperlink">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0,0,0,1"/>
<Setter Property="BorderBrush" Value="White"/>
<Setter Property="Padding" Value="0"/>
<Setter Property="FontSize" Value="10"/>
</Style>
</UserControl.Styles>
<Grid RowDefinitions="30,*,Auto">
<TextBlock Grid.Row="0" VerticalAlignment="Center" Padding="10,0,0,0" Name="Title">
Elite Observatory - v0
@ -31,7 +40,16 @@
</DataTemplate>
</TabControl.ContentTemplate>
</TabControl>
<WrapPanel Height="50" Grid.Row="2" Grid.Column="0" VerticalAlignment="Bottom" Orientation="Horizontal" HorizontalAlignment="Right">
<Grid RowDefinitions="Auto,Auto" Grid.Row="2">
<StackPanel Grid.Column="1" Height="50" VerticalAlignment="Bottom" Orientation="Vertical" HorizontalAlignment="Left">
<Button Classes="Hyperlink" Name="github" Margin="10,0,0,5" Command="{Binding OpenGithub}">
github
</Button>
<Button Classes="Hyperlink" Name="Donate" Margin="10,0,0,0" Command="{Binding OpenDonate}">
Donate
</Button>
</StackPanel>
<WrapPanel Grid.Column="2" Height="50" VerticalAlignment="Bottom" Orientation="Horizontal" HorizontalAlignment="Right">
<Button Name="ToggleMonitor" Margin="10" Command="{Binding ToggleMonitor}" Content="{Binding ToggleButtonText}">
Start Monitor
</Button>
@ -40,4 +58,5 @@
</Button>
</WrapPanel>
</Grid>
</Grid>
</UserControl>