-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from Kwalix/develop
Release V1
- Loading branch information
Showing
16 changed files
with
400 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<Window x:Class="KiwiCleaner.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:KiwiCleaner" | ||
mc:Ignorable="d" | ||
Topmost="True" | ||
Title="À propos" Height="392" Width="500" Icon="/res/KiwiCleaner.png" ResizeMode="NoResize" Background="#FF413E4A" WindowStartupLocation="CenterScreen"> | ||
<StackPanel> | ||
<StackPanel Margin="50"> | ||
<Label Content="Crée par : Kwalix" FontFamily="Bahnschrift" Foreground="#FFF7E4BE" FontSize="24"/> | ||
<Label Content="Version : 1.0.0" FontFamily="Bahnschrift" Foreground="#FFF7E4BE" FontSize="18"/> | ||
</StackPanel> | ||
<StackPanel Orientation="Horizontal" Margin="50" HorizontalAlignment="Center"> | ||
|
||
<Button x:Name="Bmc_Btn" BorderBrush="{x:Null}" Foreground="{x:Null}" Height="50" Background="{x:Null}" Click="Bmc_Button_Click"> | ||
<Image Source="/res/bmc-button.png" Stretch="Fill"/> | ||
<Button.ToolTip> | ||
<ToolTip> | ||
Faite moi un don | ||
</ToolTip> | ||
</Button.ToolTip> | ||
</Button> | ||
<Separator Margin="5,5"/> | ||
<Button x:Name="Ig_Button" BorderBrush="{x:Null}" Foreground="{x:Null}" Height="50" Background="{x:Null}" Click="Ig_Button_Click"> | ||
<Image Source="/res/ig-button.png" Stretch="Fill"/> | ||
<Button.ToolTip> | ||
<ToolTip> | ||
Ma Page Instagram | ||
</ToolTip> | ||
</Button.ToolTip> | ||
</Button> | ||
<Separator Margin="5,5"/> | ||
<Button x:Name="Gh_Button" BorderBrush="{x:Null}" Foreground="{x:Null}" Height="50" Background="{x:Null}" Click="Gh_Button_Click"> | ||
<Image Source="/res/github.png" Stretch="Fill"/> | ||
<Button.ToolTip> | ||
<ToolTip> | ||
Mon profile GitHub | ||
</ToolTip> | ||
</Button.ToolTip> | ||
</Button> | ||
<Separator Margin="5,5"/> | ||
<Button x:Name="Report_Button" BorderBrush="{x:Null}" Foreground="{x:Null}" Height="50" Background="{x:Null}" Click="Report_Button_Click"> | ||
<Image Source="/res/virus.png" Stretch="Fill"/> | ||
<Button.ToolTip> | ||
<ToolTip> | ||
Signaler un problème | ||
</ToolTip> | ||
</Button.ToolTip> | ||
</Button> | ||
</StackPanel> | ||
</StackPanel> | ||
</Window> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
using System.Text; | ||
using System.Windows; | ||
using System.Windows.Controls; | ||
using System.Windows.Data; | ||
using System.Windows.Documents; | ||
using System.Windows.Input; | ||
using System.Windows.Media; | ||
using System.Windows.Media.Imaging; | ||
using System.Windows.Navigation; | ||
using System.Windows.Shapes; | ||
|
||
namespace KiwiCleaner | ||
{ | ||
/// <summary> | ||
/// Logique d'interaction pour About.xaml | ||
/// </summary> | ||
public partial class About : Window | ||
{ | ||
public About() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void Bmc_Button_Click(object sender,RoutedEventArgs e) | ||
{ | ||
ProcessStartInfo psi = new ProcessStartInfo(); | ||
psi.UseShellExecute = true; | ||
psi.FileName = "https://www.buymeacoffee.com/kwalix"; | ||
|
||
Process.Start(psi); | ||
} | ||
|
||
private void Ig_Button_Click(object sender, RoutedEventArgs e) | ||
{ | ||
ProcessStartInfo psi = new ProcessStartInfo(); | ||
psi.UseShellExecute = true; | ||
psi.FileName = "https://www.instagram.com/kwalix.dev/"; | ||
|
||
Process.Start(psi); | ||
} | ||
|
||
private void Gh_Button_Click(object sender, RoutedEventArgs e) | ||
{ | ||
ProcessStartInfo psi = new ProcessStartInfo(); | ||
psi.UseShellExecute = true; | ||
psi.FileName = "https://github.com/Kwalix"; | ||
|
||
Process.Start(psi); | ||
} | ||
|
||
private void Report_Button_Click(object sender, RoutedEventArgs e) | ||
{ | ||
ProcessStartInfo psi = new ProcessStartInfo(); | ||
psi.UseShellExecute = true; | ||
psi.FileName = "https://github.com/Kwalix/KiwiCleaner/issues/new"; | ||
|
||
Process.Start(psi); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.