mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-26 19:14:20 +01:00
25 lines
566 B
C#
25 lines
566 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DS4WinWPF.DS4Forms.ViewModels
|
|||
|
{
|
|||
|
public class MainWindowsViewModel
|
|||
|
{
|
|||
|
private bool fullTabsEnabled = true;
|
|||
|
|
|||
|
public bool FullTabsEnabled
|
|||
|
{
|
|||
|
get => fullTabsEnabled;
|
|||
|
set
|
|||
|
{
|
|||
|
fullTabsEnabled = value;
|
|||
|
FullTabsEnabledChanged?.Invoke(this, EventArgs.Empty);
|
|||
|
}
|
|||
|
}
|
|||
|
public event EventHandler FullTabsEnabledChanged;
|
|||
|
}
|
|||
|
}
|