GPAL - Generally Positive Automation Library
v1.0
GPAL The Fluent Automation LIbrary
Toggle main menu visibility
Loading...
Searching...
No Matches
FormSettings.cs
1
// =============================================================================
2
// GPAL - Generally Positive Automation Library
3
// Copyright © 2026 Software Decisions, Inc. All rights reserved.
4
//
5
// This file is part of GPAL.
6
// Licensed under the Business Source License 1.1
7
//
8
// Primary development, architecture, and vision by Michael B. Vederman,
9
// CEO of Software Decisions, Inc., Texas.
10
//
11
// Internal development maintained privately.
12
// Public releases appear on GitHub: https://github.com/SoftwareDecisionsInc/GPAL.
13
//
14
// See LICENSE for full terms, including Additional Use Grant.
15
// =============================================================================
16
17
using
System;
18
using
System.Collections.Generic;
19
using
System.Linq;
20
using
System.Text;
21
using
System.Threading.Tasks;
22
using
System.Windows.Forms;
23
24
namespace
GenerallyPositive.GPALForm
25
{
26
internal
class
FormSettings
27
{
28
internal
TableLayoutPanel TableLayoutPanel {
get
;
set
; }
29
internal
TabControl TabControl {
get
;
set
; } =
null
;
30
internal
TabPage CurrentTabPage {
get
;
set
; }
31
32
internal
int
width {
get
;
set
; } = 300;
33
internal
int
height {
get
;
set
; } = 300;
34
internal
int
top {
get
;
set
; } = 300;
35
internal
int
left {
get
;
set
; } = 640;
36
37
internal
GPALFormForm myForm {
get
;
set
; } =
null
;
38
internal
System.Windows.Forms.ToolTip ToolTip {
get
; } =
new
System.Windows.Forms.ToolTip
39
{
40
AutoPopDelay = 5000,
41
InitialDelay = 500,
42
ShowAlways =
true
43
};
44
}
45
}
46
GenerallyPositive.GPALForm
Definition
FormHelper.cs:32
Form
FormSettings.cs
Generated by
1.17.0