Sun, 29 Sep 2024 20:25:41 +0200
update toolkit, fix download/upload progressbar
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); } } }