22 lines
481 B
C#
22 lines
481 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices.WindowsRuntime;
|
|
using Microsoft.UI.Xaml;
|
|
using Microsoft.UI.Xaml.Controls;
|
|
using RustTools.ViewModels;
|
|
namespace RustTools.Views;
|
|
public sealed partial class HomePage : Page
|
|
{
|
|
public HomePageViewModel ViewModel {
|
|
get;
|
|
}
|
|
|
|
public HomePage()
|
|
{
|
|
ViewModel= App.GetService<HomePageViewModel>();
|
|
InitializeComponent();
|
|
}
|
|
}
|