We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8f6de9 commit c8d1d88Copy full SHA for c8d1d88
2 files changed
ArcExplorer/ViewModels/MainWindowViewModel.cs
@@ -15,6 +15,9 @@ namespace ArcExplorer.ViewModels
15
{
16
public class MainWindowViewModel : ViewModelBase
17
18
+ // TODO: In the future the version could be loaded from a file updated by a build script.
19
+ public string Title { get; } = "Arc Explorer v1.4.0";
20
+
21
public AvaloniaList<FileGridItem> Files
22
23
get => files;
ArcExplorer/Views/MainWindow.axaml
@@ -10,7 +10,7 @@
10
WindowStartupLocation="CenterScreen"
11
x:Class="ArcExplorer.Views.MainWindow"
12
Icon="/Assets/arc.ico"
13
- Title="ARC Explorer"
+ Title="{Binding Title}"
14
Name="thisWindow">
<Window.Resources>
<converters:IconKeyDrawingConverter x:Key="iconKeyDrawingConverter" />
0 commit comments