ui/wpf/UIcore/Toolkit.cs

Mon, 17 Jun 2024 21:20:58 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Mon, 17 Jun 2024 21:20:58 +0200
changeset 43
ef01d2c90128
parent 0
2483f517c562
permissions
-rw-r--r--

some minor toolbar adjustments, toolkit icons update

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;

namespace UI
{
    public class EventCallback
    {
        public IntPtr Object;
        public Action<IntPtr> Action;

        public EventCallback(IntPtr uiobj, Action<IntPtr> action)
        {
            Object = uiobj;
            Action = action;
        }

        public void Callback(object sender, RoutedEventArgs a)
        {
            Action.Invoke(Object);
        }
    }
}

mercurial