2020-08-10 13:38:42 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2020-10-17 12:54:24 +00:00
|
|
|
|
using System.Diagnostics;
|
2020-08-10 13:38:42 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
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;
|
2022-08-23 03:14:40 +00:00
|
|
|
|
using UWUVCI_AIO_WPF.UI.Windows;
|
2020-08-10 13:38:42 +00:00
|
|
|
|
|
|
|
|
|
namespace UWUVCI_AIO_WPF.UI.Frames
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interaktionslogik für Teaser.xaml
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class Teaser : Page
|
|
|
|
|
{
|
|
|
|
|
public Teaser()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
2020-10-17 12:54:24 +00:00
|
|
|
|
|
|
|
|
|
private void tb_PreviewMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
|
|
|
|
|
{
|
2022-08-23 03:14:40 +00:00
|
|
|
|
//Process.Start("https://www.reddit.com/r/WiiUHacks/comments/jchcls/poc_retroarch_autoboot_starts_rom_automatically/");
|
|
|
|
|
var cm = new Custom_Message("Soon™", "Coming Soon™ to a UWUVCI Prime Near You!");
|
|
|
|
|
cm.ShowDialog();
|
2020-10-17 12:54:24 +00:00
|
|
|
|
}
|
2020-08-10 13:38:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|