This commit is contained in:
Meik
2025-11-11 11:03:42 +01:00
commit dc3e8a2e4c
582 changed files with 191465 additions and 0 deletions

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

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
namespace F4SDicons.Models
{
public class IconCollectionUserControl : UserControl
{
#region Events
public static readonly RoutedEvent IconSelectedEvent = EventManager.RegisterRoutedEvent("IconSelected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(UserControl));
#endregion
}
}

View File

@@ -0,0 +1,27 @@
using F4SD_AdaptableIcon.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace F4SDicons.Models
{
public class RoutedEventArgsIconInfo : RoutedEventArgs
{
public string IconName { get; set; }
public enumIconTypes IconType { get; set; }
public RoutedEventArgsIconInfo()
{
}
public RoutedEventArgsIconInfo(RoutedEvent customEvent) : base (customEvent)
{
}
}
}