mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
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
19 lines
422 B
C#
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);
|
|
}
|
|
}
|
|
}
|
|
} |