HamBook – Rev 53

Subversion Repositories:
Rev:
using Jot;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace HamBook.Utilities
{
    public static class WindowState
    {
        // expose the tracker instance
        public static Tracker FormTracker = new Tracker();

        static WindowState()
        {
            // tell Jot how to track Window objects
            FormTracker.Configure<Form>()
                .Id(w => w.Name)
                .Properties(w => new { w.Height, w.Width, w.Left, w.Top, w.WindowState })
                .PersistOn(nameof(Form.FormClosed));
    
    }
    }
}