/// <summary>
        /// Updates the stream icon path.
        /// </summary>
        /// <param name="text">The stream icon path.</param>
        private void UpdateStreamIconPath(StreamIcon streamIcon)
        {
            if (streamIcon == null)
            {
                return;
            }

            this.StreamIconName = streamIcon.IconName;
            this.SelectionCallBack?.Invoke();
        }
 /// <summary>
 /// Updates the selected stream icon
 /// </summary>
 /// <param name="text">The stream icon path.</param>
 private void ChangeSelectedIcon(StreamIcon streamIcon)
 {
     this.SelectedStreamIcon = streamIcon;
 }