photino.NET/Photino.NET/PhotinoWindowEnums.cs
Pat Hartl 0b6145d3c3 Merge branch 'feature/window-manipulation' into development
# Conflicts:
#	Photino.NET/PhotinoDllImports.cs
#	Photino.NET/PhotinoWindow.NET.cs
#	Photino.NET/PhotinoWindowEnums.cs
2025-10-24 17:21:57 -05:00

26 lines
No EOL
380 B
C#

using System;
namespace Photino.NET;
/// <summary>
/// Represents the edges/corners that can be used to resize a window
/// </summary>
public enum PhotinoWindowHitTestCode
{
Left,
Right,
Top,
Bottom,
TopLeft,
TopRight,
BottomLeft,
BottomRight,
}
public enum PhotinoWindowProgressState
{
Error,
Paused,
Normal,
Indeterminate,
}