2020-03-01 15:52:59 +00:00
|
|
|
|
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;
|
2020-03-13 22:35:20 +00:00
|
|
|
|
using UWUVCI_AIO_WPF.UI.Windows;
|
2020-03-01 15:52:59 +00:00
|
|
|
|
|
|
|
|
|
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()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
2020-03-13 22:35:20 +00:00
|
|
|
|
|
|
|
|
|
private void Button_Click(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
TitleKeys tk = new TitleKeys();
|
|
|
|
|
tk.ShowDialog();
|
|
|
|
|
}
|
2020-03-31 23:48:50 +00:00
|
|
|
|
|
|
|
|
|
private void Button_Click_1(object sender, RoutedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
MainViewModel mvm = FindResource("mvm") as MainViewModel;
|
|
|
|
|
mvm.EnterKey(true);
|
|
|
|
|
}
|
2020-03-01 15:52:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|