Mesen2/UI/Views/NesControllerView.axaml.cs
2023-01-25 16:03:56 -05:00

26 lines
446 B
C#

using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace Mesen.Views
{
public class NesControllerView : UserControl
{
public bool ShowMicrophoneButton { get; }
public NesControllerView() : this(false)
{
}
public NesControllerView(bool showMicrophoneButton)
{
ShowMicrophoneButton = showMicrophoneButton;
InitializeComponent();
}
private void InitializeComponent()
{
AvaloniaXamlLoader.Load(this);
}
}
}