using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using static FasdDesktopUi.Basics.UserControls.AdaptableIcon.cIconPainter; namespace F4SD_AdaptableIcon_Export { public class cAdvancedIconInformation : cIconInformation, INotifyPropertyChanged { private bool isVisible; public bool IsVisible { get { return isVisible; } set { isVisible = value; PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(IsVisible))); } } public event PropertyChangedEventHandler PropertyChanged; } }