12 lines
No EOL
221 B
C#
12 lines
No EOL
221 B
C#
using MauiApp1.ViewModel;
|
|
namespace MauiApp1.View;
|
|
|
|
public partial class TransactionView : ContentPage
|
|
{
|
|
public TransactionView()
|
|
{
|
|
InitializeComponent();
|
|
|
|
BindingContext = new TransactionViewModel(Navigation);
|
|
}
|
|
} |