We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d769ded commit 2424d5cCopy full SHA for 2424d5c
examples/xtd.forms.examples/containers/panel/src/panel.cpp
@@ -7,13 +7,13 @@ class form1 : public form {
7
location({200, 200});
8
client_size({640, 480});
9
10
- panel1.parent(*this);
+ panel1.parent(self_);
11
panel1.border_style(forms::border_style::fixed_single);
12
panel1.location({10, 10});
13
panel1.size({305, 460});
14
panel1.anchor(anchor_styles::top | anchor_styles::left | anchor_styles::bottom);
15
16
- panel2.parent(*this);
+ panel2.parent(self_);
17
panel2.border_style(forms::border_style::fixed_3d);
18
panel2.location({325, 10});
19
panel2.size({305, 460});
0 commit comments