Files
Wino-Mail/Wino.Core.WinUI/Views/Abstract/SettingsPageBase.cs
T

17 lines
527 B
C#
Raw Normal View History

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