mirror of
https://github.com/Rayerd/dfl.git
synced 2025-04-27 05:40:07 +03:00
Disable the maximize button in the example codes.
This commit is contained in:
parent
f5ddf3225c
commit
1ab4ac5782
3 changed files with 3 additions and 1 deletions
|
@ -45,6 +45,7 @@ class MainForm : Form
|
||||||
this.text = "Buttons example";
|
this.text = "Buttons example";
|
||||||
this.size = Size(400,300);
|
this.size = Size(400,300);
|
||||||
this.formBorderStyle = FormBorderStyle.FIXED_DIALOG;
|
this.formBorderStyle = FormBorderStyle.FIXED_DIALOG;
|
||||||
|
this.maximizeBox = false;
|
||||||
|
|
||||||
// Default button
|
// Default button
|
||||||
_okButton = new Button();
|
_okButton = new Button();
|
||||||
|
|
|
@ -21,6 +21,7 @@ class MainForm : Form
|
||||||
this.text = "TabControl example";
|
this.text = "TabControl example";
|
||||||
this.size = Size(300, 300);
|
this.size = Size(300, 300);
|
||||||
this.formBorderStyle = FormBorderStyle.FIXED_DIALOG;
|
this.formBorderStyle = FormBorderStyle.FIXED_DIALOG;
|
||||||
|
this.maximizeBox = false;
|
||||||
|
|
||||||
_tab = new TabControl();
|
_tab = new TabControl();
|
||||||
_tab.dock = DockStyle.FILL;
|
_tab.dock = DockStyle.FILL;
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
],
|
],
|
||||||
"settings": {
|
"settings": {
|
||||||
"d.projectImportPaths": [
|
"d.projectImportPaths": [
|
||||||
"C:\\d\\gitproj\\dfl\\source\\"
|
"..\\..\\..\\dfl\\source"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue