sharee.bike-App/SharedGui/View/VersionNumberView.xaml.cs

24 lines
456 B
C#
Raw Permalink Normal View History

2022-09-16 11:19:46 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
2024-04-09 12:53:23 +02:00
namespace SharedGui.View
2022-09-16 11:19:46 +02:00
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class VersionNumberView : ContentView
{
public VersionNumberView()
{
InitializeComponent();
2024-04-09 12:53:23 +02:00
CurrentAppVersionNumber.Text = ShareeBike.Model.CurrentAppInfos.CurrentAppVersion;
2022-09-16 11:19:46 +02:00
}
}
}