Skip to content

File ResolutionChangedEventArgs.cs

File List > LemonUI > LemonUI > ResolutionChangedEventArgs.cs

Go to the documentation of this file


using System.Drawing;

namespace LemonUI
{
    public class ResolutionChangedEventArgs
    {
        #region Properties

        public SizeF Before { get; }
        public SizeF After { get; }

        #endregion

        #region Constructors

        internal ResolutionChangedEventArgs(SizeF before, SizeF after)
        {
            Before = before;
            After = after;
        }

        #endregion
    }
}