BililiveRecorder/BililiveRecorder.WPF/Pages/LogPage.xaml.cs

15 lines
348 B
C#
Raw Normal View History

2020-11-27 18:51:02 +08:00
namespace BililiveRecorder.WPF.Pages
{
/// <summary>
/// Interaction logic for LogPage.xaml
/// </summary>
public partial class LogPage
{
public LogPage()
{
2021-01-01 14:46:27 +08:00
this.InitializeComponent();
2021-01-05 19:08:57 +08:00
this.VersionTextBlock.Text = " " + BuildInfo.Version + " " + BuildInfo.HeadShaShort;
2020-11-27 18:51:02 +08:00
}
}
}