mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 10:54:55 +08:00
27 lines
988 B
C#
27 lines
988 B
C#
using BetterLyrics.WinUI3.Models.Settings;
|
|
using Microsoft.UI.Xaml;
|
|
using Microsoft.UI.Xaml.Controls;
|
|
|
|
// To learn more about WinUI, the WinUI project structure,
|
|
// and more about our project templates, see: http://aka.ms/winui-project-info.
|
|
|
|
namespace BetterLyrics.WinUI3.Controls
|
|
{
|
|
public sealed partial class AlbumArtAreaStyleSettingsControl : UserControl
|
|
{
|
|
public static readonly DependencyProperty AlbumArtLayoutSettingsProperty =
|
|
DependencyProperty.Register(nameof(AlbumArtLayoutSettings), typeof(AlbumArtAreaStyleSettings), typeof(AlbumArtAreaStyleSettingsControl), new PropertyMetadata(default));
|
|
|
|
public AlbumArtAreaStyleSettings AlbumArtLayoutSettings
|
|
{
|
|
get => (AlbumArtAreaStyleSettings)GetValue(AlbumArtLayoutSettingsProperty);
|
|
set => SetValue(AlbumArtLayoutSettingsProperty, value);
|
|
}
|
|
|
|
public AlbumArtAreaStyleSettingsControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|