sharee.bike-App/SharedGui/View/VersionNumberView.xaml.cs
2024-04-09 12:53:23 +02:00

23 lines
456 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace SharedGui.View
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class VersionNumberView : ContentView
{
public VersionNumberView()
{
InitializeComponent();
CurrentAppVersionNumber.Text = ShareeBike.Model.CurrentAppInfos.CurrentAppVersion;
}
}
}