forked from AlexanderPro/SmartSystemMenu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWindowState.cs
More file actions
44 lines (26 loc) · 1 KB
/
Copy pathWindowState.cs
File metadata and controls
44 lines (26 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using SmartSystemMenu.Native.Enums;
namespace SmartSystemMenu
{
public class WindowState : ICloneable
{
public string ProcessName { get; set; }
public string ClassName { get; set; }
public int Left { get; set; }
public int Top { get; set; }
public int Width { get; set; }
public int Height { get; set; }
public bool? AeroGlass { get; set; }
public bool? AlwaysOnTop { get; set; }
public bool? HideForAltTab { get; set; }
public bool? Resizable { get; set; }
public WindowAlignment? Alignment { get; set; }
public int? Transparency { get; set; }
public Priority? Priority { get; set; }
public bool? MinimizeToTrayAlways { get; set; }
public bool? IsDisabledMinimizeButton { get; set; }
public bool? IsDisabledMaximizeButton { get; set; }
public bool? IsDisabledCloseButton { get; set; }
public object Clone() => MemberwiseClone();
}
}