Disable the maximize button in the example codes.

This commit is contained in:
haru-s 2023-01-08 15:46:12 +09:00
parent f5ddf3225c
commit 1ab4ac5782
3 changed files with 3 additions and 1 deletions

View file

@ -45,6 +45,7 @@ class MainForm : Form
this.text = "Buttons example";
this.size = Size(400,300);
this.formBorderStyle = FormBorderStyle.FIXED_DIALOG;
this.maximizeBox = false;
// Default button
_okButton = new Button();

View file

@ -21,6 +21,7 @@ class MainForm : Form
this.text = "TabControl example";
this.size = Size(300, 300);
this.formBorderStyle = FormBorderStyle.FIXED_DIALOG;
this.maximizeBox = false;
_tab = new TabControl();
_tab.dock = DockStyle.FILL;

View file

@ -6,7 +6,7 @@
],
"settings": {
"d.projectImportPaths": [
"C:\\d\\gitproj\\dfl\\source\\"
"..\\..\\..\\dfl\\source"
]
}
}