mirror of
https://github.com/leiurayer/downkyi.git
synced 2025-03-23 15:50:12 +08:00
19 lines
358 B
C#
19 lines
358 B
C#
using DownKyi.Models;
|
|
using System.Windows;
|
|
|
|
namespace DownKyi.Views
|
|
{
|
|
/// <summary>
|
|
/// SplashWindow.xaml 的交互逻辑
|
|
/// </summary>
|
|
public partial class SplashWindow : Window
|
|
{
|
|
public SplashWindow()
|
|
{
|
|
InitializeComponent();
|
|
|
|
nameVersion.Text = new AppInfo().VersionName;
|
|
}
|
|
}
|
|
}
|