13 lines
287 B
C#
13 lines
287 B
C#
using Microsoft.UI.Xaml.Controls;
|
|
|
|
namespace Hyperbar.Windows;
|
|
|
|
public partial class WidgetSettingsView : UserControl
|
|
{
|
|
public WidgetSettingsView() =>
|
|
InitializeComponent();
|
|
|
|
protected WidgetSettingsViewModel ViewModel =>
|
|
(WidgetSettingsViewModel)DataContext;
|
|
}
|