Skip to content

Window Management

Work in Progress

This guide is under development. Check back soon!

Overview

This guide will cover:

  • Window configuration options
  • Size and position management
  • State persistence
  • Custom title bars
  • Multiple windows

Quick Reference

csharp
var window = new HermesWindow()
    .SetTitle("My App")
    .SetSize(1024, 768)
    .SetMinSize(640, 480)
    .Center()
    .SetResizable(true)
    .RememberWindowState();

Coming Soon

  • Window state events
  • Programmatic resize and move
  • Fullscreen mode
  • Multiple window patterns

Released under the Elastic License 2.0