27 lines
508 B
C#
27 lines
508 B
C#
|
|
using Microsoft.UI.Xaml.Controls;
|
||
|
|
using VDownload.Core.ViewModels.Settings;
|
||
|
|
|
||
|
|
namespace VDownload.Core.Views.Settings
|
||
|
|
{
|
||
|
|
public sealed partial class SettingsView : Page
|
||
|
|
{
|
||
|
|
#region PROPERTIES
|
||
|
|
|
||
|
|
public new SettingsViewModel DataContext { get; set; }
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
#region CONSTRUCTORS
|
||
|
|
|
||
|
|
public SettingsView(SettingsViewModel viewModel)
|
||
|
|
{
|
||
|
|
this.InitializeComponent();
|
||
|
|
this.DataContext = viewModel;
|
||
|
|
}
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|
||
|
|
}
|