2024-04-18 01:44:37 +02:00
|
|
|
|
using Windows.UI.Xaml;
|
2024-11-10 23:28:25 +01:00
|
|
|
|
using Wino.Core.UWP;
|
|
|
|
|
|
using Wino.Core.ViewModels;
|
2024-04-18 01:44:37 +02:00
|
|
|
|
|
|
|
|
|
|
namespace Wino.Views.Abstract
|
|
|
|
|
|
{
|
2025-02-14 01:43:52 +01:00
|
|
|
|
public partial class SettingsPageBase<T> : BasePage<T> where T : CoreBaseViewModel
|
2024-04-18 01:44:37 +02:00
|
|
|
|
{
|
|
|
|
|
|
public string Title
|
|
|
|
|
|
{
|
|
|
|
|
|
get { return (string)GetValue(TitleProperty); }
|
|
|
|
|
|
set { SetValue(TitleProperty, value); }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static readonly DependencyProperty TitleProperty = DependencyProperty.Register(nameof(Title), typeof(string), typeof(SettingsPageBase<T>), new PropertyMetadata(string.Empty));
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|