1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Artemis/src/Artemis.UI/Screens/IScreenViewModel.cs
Robert Beekman 048864fe78
Scripting - Core implementation (#629)
Scripting - Added plugin classes
Layers - Fix certain blend modes not working as intended
UI - Add customizable header per page
Profile editor - Hide the regular header
Profile editor - Added a new toolbar
2021-06-19 09:48:16 +02:00

19 lines
422 B
C#

using Stylet;
namespace Artemis.UI.Screens
{
public abstract class MainScreenViewModel : Screen
{
private Screen _headerViewModel;
public Screen HeaderViewModel
{
get => _headerViewModel;
set
{
if (!SetAndNotify(ref _headerViewModel, value)) return;
_headerViewModel.ConductWith(this);
}
}
}
}