Artemis.ViewModels.Profiles.ProfileViewModel.ProfileViewModel C# (CSharp) 메소드

ProfileViewModel() 공개 메소드

public ProfileViewModel ( DeviceManager deviceManager ) : System
deviceManager Artemis.Managers.DeviceManager
리턴 System
        public ProfileViewModel(DeviceManager deviceManager)
        {
            _deviceManager = deviceManager;

            PreviewTimer = new Timer(40);
            ShowAll = false;

            PreviewTimer.Elapsed += InvokeUpdateKeyboardPreview;
            deviceManager.OnKeyboardChangedEvent += DeviceManagerOnOnKeyboardChangedEvent;
        }