Renamed Katteker.Gui to Katteker.UserInterface.

This commit is contained in:
Holger Boerchers
2018-06-16 09:45:56 +02:00
parent 3aebff4e6d
commit ebc776459d
10 changed files with 54 additions and 54 deletions

View File

@ -1,10 +1,10 @@
using System;
using System.Reflection;
using System.Windows;
using Katteker.Gui;
namespace Example
{
/// <inheritdoc cref="Window" />
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
@ -21,12 +21,12 @@ namespace Example
private async void MainWindow_OnContentRendered(object sender, EventArgs e)
{
await Wrapper.CheckForUpdateAsync(true).ConfigureAwait(false);
await Katteker.UserInterface.CheckForUpdateAsync(true).ConfigureAwait(false);
}
private async void ButtonBase_OnClick(object sender, RoutedEventArgs e)
{
await Wrapper.CheckForUpdateAsync().ConfigureAwait(false);
await Katteker.UserInterface.CheckForUpdateAsync().ConfigureAwait(false);
}
}
}