inital
This commit is contained in:
31
F4SD-AdaptableIcon-Export/Models/AdvancedIconInformation.cs
Normal file
31
F4SD-AdaptableIcon-Export/Models/AdvancedIconInformation.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
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;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user