You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GTAOnlineCasinoHelper/GTAOnlineCasinoHelper/Views/TestTwo.xaml.cs

28 lines
614 B

using MahApps.Metro.Controls;
using MahApps.Metro.Controls.Dialogs;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
namespace GTAOnlineCasinoHelper.Views
{
public partial class TestTwo : UserControl
{
public TestTwo()
{
this.InitializeComponent();
}
private async void Button_Click(object sender, RoutedEventArgs e)
{
await MainWindow.Instance.ShowMessageAsync("Test", "This is a test");
}
}
}