Files
C4IT-F4SD-Client/F4SD-AdaptableIcon-Export/Models/AdvancedIconInformation.cs
2025-11-11 11:03:42 +01:00

32 lines
759 B
C#

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;
}
}