32 lines
750 B
C#
32 lines
750 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 F4SDicons.Models
|
|
{
|
|
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;
|
|
|
|
}
|
|
}
|