Files
GreadyPoang/GreadyPoang/Views/RoundRunningView.xaml.cs

20 lines
488 B
C#

using GreadyPoang.CommandClasses;
namespace GreadyPoang.Views;
public partial class RoundRunningView : ContentPage
{
public RoundRunningView(RoundRunningViewModelCommands viewModel)
{
InitializeComponent();
ViewModel = viewModel;
}
protected override void OnAppearing()
{
base.OnAppearing();
BindingContext = ViewModel;
}
public RoundRunningViewModelCommands ViewModel { get; set; }
public int GameRoundId { get; set; }
}