roketto-launch/Models/SaveFile/AppOptionsBase.cs
Ray 81c97c1b93 Changed to .NET 10
Changed to remove TileContainer
Added loading progress dialog
2026-05-08 23:16:26 +01:00

26 lines
676 B
C#

using System.Drawing;
namespace RokettoLaunch.Models.SaveFile
{
public class AppOptionsBase
{
public int FileVersion { get; set; } = 0;
public int TilesPerRow { get; set; } = 8;
public bool ShowBigIcons { get; set; } = true;
public RyzStudio.Windows.ThemedForms.ButtonTextBox.ThKeyCodeTextBox.Results ShowToggleHotkey { get; set; } = null;
public bool HideOnClose { get; set; } = true;
public bool HideOnExecute { get; set; } = true;
public bool AlwaysOnTop { get; set; } = false;
public Point StartPosition { get; set; } = Point.Empty;
public int Height { get; set; } = 280;
}
}