mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 05:40:11 +00:00
54 lines
1.8 KiB
C#
54 lines
1.8 KiB
C#
using MSFSPopoutPanelManager.DomainModel.Profile;
|
|
using MSFSPopoutPanelManager.Orchestration;
|
|
using Prism.Commands;
|
|
using System;
|
|
using System.Windows;
|
|
using System.Windows.Input;
|
|
|
|
namespace MSFSPopoutPanelManager.MainApp.ViewModel
|
|
{
|
|
public class PanelConfigFieldViewModel : BaseViewModel
|
|
{
|
|
private readonly PanelConfigurationOrchestrator _panelConfigurationOrchestrator;
|
|
|
|
public PanelConfig DataItem { get; set; }
|
|
|
|
public string BindingPath { get; set; }
|
|
|
|
public RoutedEvent SourceUpdatedEvent { get; set; }
|
|
|
|
public DelegateCommand<object> PlusMinusCommand { get; set; }
|
|
|
|
public ICommand DataUpdatedCommand { get; set; }
|
|
|
|
public PanelConfigFieldViewModel(SharedStorage sharedStorage, PanelConfigurationOrchestrator panelConfigurationOrchestrator) : base(sharedStorage)
|
|
{
|
|
_panelConfigurationOrchestrator = panelConfigurationOrchestrator;
|
|
|
|
PlusMinusCommand = new DelegateCommand<object>(OnPlusMinus);
|
|
DataUpdatedCommand = new DelegateCommand(OnDataUpdated);
|
|
}
|
|
|
|
private void OnPlusMinus(object param)
|
|
{
|
|
if (DataItem == null || BindingPath == null || param == null)
|
|
return;
|
|
|
|
var bindingPathProperty = typeof(PanelConfig).GetProperty(BindingPath);
|
|
|
|
if (bindingPathProperty == null)
|
|
return;
|
|
|
|
var value = Convert.ToInt32(bindingPathProperty.GetValue(DataItem, null));
|
|
bindingPathProperty.SetValue(DataItem, Convert.ToInt32(param) + value);
|
|
|
|
OnDataUpdated();
|
|
}
|
|
|
|
private void OnDataUpdated()
|
|
{
|
|
if (DataItem != null)
|
|
_panelConfigurationOrchestrator.PanelConfigPropertyUpdated(DataItem.PanelHandle, (PanelConfigPropertyName)Enum.Parse(typeof(PanelConfigPropertyName), BindingPath));
|
|
}
|
|
}
|
|
}
|