File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1212 Topmost =" True" >
1313 <Border BorderBrush =" Black" BorderThickness =" 2" >
1414 <Grid RowDefinitions =" *,Auto" >
15- <Image Grid.RowSpan=" 2" Source =" /Assets/LogoBig.png" ></Image >
15+ <Image Grid.RowSpan=" 2" Source =" /Assets/LogoBig.png" ></Image >
16+ <Label x : Name =" lblVersion" VerticalAlignment =" Bottom" />
1617 </Grid >
1718 </Border >
1819</Window >
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ public partial class SplashScreen : Window
88 public SplashScreen ( )
99 {
1010 InitializeComponent ( ) ;
11+ lblVersion . Content = $ "{ Program . Version } | { Program . VersionDate } ";
1112 }
1213 }
1314}
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ public ZXAboutDialog()
1212 {
1313 InitializeComponent ( ) ;
1414
15- txtBuild . Text = "1.6.0-beta5" ;
16- txtDate . Text = "2025-10-05" ;
15+ txtBuild . Text = Program . Version ;
16+ txtDate . Text = Program . VersionDate ;
1717
1818 btnClose . Click += BtnClose_Click ;
1919
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ namespace ZXBasicStudio
88{
99 internal class Program
1010 {
11+ public static string Version = "1.6.0 - beta 5" ;
12+ public static string VersionDate = "2025.10.05" ;
13+
1114 // Initialization code. Don't use any Avalonia, third-party APIs or any
1215 // SynchronizationContext-reliant code before AppMain is called: things aren't initialized
1316 // yet and stuff might break.
You can’t perform that action at this time.
0 commit comments