mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2025-01-02 06:08:43 +00:00
822f6b290d
TODO: ckey, injection process fix and paths i think
39 lines
915 B
C#
39 lines
915 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
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;
|
|
using UWUVCI_AIO_WPF.UI.Windows;
|
|
|
|
namespace UWUVCI_AIO_WPF.UI.Frames
|
|
{
|
|
/// <summary>
|
|
/// Interaktionslogik für SettingsFrame.xaml
|
|
/// </summary>
|
|
public partial class SettingsFrame : Page, IDisposable
|
|
{
|
|
public SettingsFrame()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
public void Dispose()
|
|
{
|
|
|
|
}
|
|
|
|
private void Button_Click(object sender, RoutedEventArgs e)
|
|
{
|
|
TitleKeys tk = new TitleKeys();
|
|
tk.ShowDialog();
|
|
}
|
|
}
|
|
}
|