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

@ -104,9 +104,9 @@
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Katteker.Gui\Katteker.Gui.csproj">
<ProjectReference Include="..\Katteker.Gui\Katteker.UserInterface.csproj">
<Project>{07e2de31-80a0-43da-b307-1ca47cd930a1}</Project>
<Name>Katteker.Gui</Name>
<Name>Katteker.UserInterface</Name>
</ProjectReference>
<ProjectReference Include="..\Katteker\Katteker.csproj">
<Project>{a45e1c59-ba9e-452c-a5e2-50de49d53e92}</Project>

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);
}
}
}