mirror of
https://github.com/LANCommander/photino.NET.git
synced 2026-08-30 14:23:05 -04:00
# Conflicts: # Photino.NET/PhotinoDllImports.cs # Photino.NET/PhotinoWindow.NET.cs # Photino.NET/PhotinoWindowEnums.cs
26 lines
No EOL
380 B
C#
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,
|
|
} |