Files
C4IT-F4SD-Client/F4SD_IconPicker/F4SDicons/Models/IconCollectionUserControl.cs
2025-11-11 11:03:42 +01:00

23 lines
528 B
C#

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