diff --git a/DownKyi/Views/SplashWindow.xaml b/DownKyi/Views/SplashWindow.xaml index 8608fce..397a51a 100644 --- a/DownKyi/Views/SplashWindow.xaml +++ b/DownKyi/Views/SplashWindow.xaml @@ -27,5 +27,30 @@ FontSize="30" Foreground="White" Text="Welcome to DownKyi!" /> + + + + + + + + + + + diff --git a/DownKyi/Views/SplashWindow.xaml.cs b/DownKyi/Views/SplashWindow.xaml.cs index fac9b76..aae628b 100644 --- a/DownKyi/Views/SplashWindow.xaml.cs +++ b/DownKyi/Views/SplashWindow.xaml.cs @@ -1,16 +1,5 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using DownKyi.Models; 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.Shapes; namespace DownKyi.Views { @@ -22,6 +11,8 @@ namespace DownKyi.Views public SplashWindow() { InitializeComponent(); + + nameVersion.Text = new AppInfo().VersionName; } } }