/// <summary>
 /// Raises the Inserted event.
 /// </summary>
 /// <param name="e">A NavButtonSpecEventArgs instance containing event data.</param>
 protected void OnInserted(ButtonSpecEventArgs e)
 {
     Inserted?.Invoke(this, e);
 }
Пример #2
0
 internal virtual void OnInserted() => Inserted?.Invoke(this, EventArgs.Empty);
 private void StreamDeckInserted()
 {
     _attached = true;
     BeginReadReport();
     Inserted?.Invoke();
 }