#include <xtd/forms/application>
#include <xtd/forms/form>
namespace draw_rectangle_example {
class form1 :
public form {
public:
form1() {
text(
"Draw rectangle example");
client_size({340, 230});
}
protected:
e.graphics().draw_rectangle(dot_pen, 120, 10, 100, 100);
e.graphics().draw_rectangle(dash_pen, 230, 10, 100, 100);
e.graphics().draw_rectangle(dash_dot_pen, 10, 120, 100, 100);
e.graphics().draw_rectangle(dash_dot_dot_pen, 120, 120, 100, 100);
custom_pen.dash_pattern({4, 1, 3, 2});
e.graphics().draw_rectangle(custom_pen, 230, 120, 100, 100);
}
};
}
auto main() -> int {
}
static const xtd::drawing::color yellow
Gets a system-defined color that has an ARGB value of 0xFFFFFF00. This field is constant.
Definition color.hpp:476
static const xtd::drawing::color green
Gets a system-defined color that has an ARGB value of 0xFF008000. This field is constant.
Definition color.hpp:212
static const xtd::drawing::color red
Gets a system-defined color that has an ARGB value of 0xFFFF0000. This field is constant.
Definition color.hpp:401
static const xtd::drawing::color blue
Gets a system-defined color that has an ARGB value of 0xFF0000FF. This field is constant.
Definition color.hpp:86
static const xtd::drawing::color cyan
Gets a system-defined color that has an ARGB value of 0xFF00FFFF. This field is constant.
Definition color.hpp:119
static const xtd::drawing::color magenta
Gets a system-defined color that has an ARGB value of 0xFFFF00FF. This field is constant.
Definition color.hpp:296
Defines an object used to draw lines and curves. This class cannot be inherited.
Definition pen.hpp:32
xtd::drawing::drawing_2d::dash_style dash_style() const noexcept
Gets the style used for dashed lines drawn with this xtd::drawing::pen.
@ e
The E key.
Definition console_key.hpp:96
@ dash_dot
Specifies a line consisting of a repeating pattern of dash-dot.
Definition dash_style.hpp:28
@ dot
Specifies a line consisting of dots.
Definition dash_style.hpp:26
@ custom
Specifies a user-defined custom dash style.
Definition dash_style.hpp:32
@ dash
Specifies a line consisting of dashes.
Definition dash_style.hpp:24
@ dash_dot_dot
Specifies a line consisting of a repeating pattern of dash-dot-dot.
Definition dash_style.hpp:30
The xtd::drawing::drawing_2d namespace provides advanced two-dimensional and vector graphics function...
Definition compositing_mode.hpp:12
The xtd::drawing::text namespace provides advanced GDI+ typography functionality.
Definition font_collection.hpp:14
The xtd::drawing namespace provides access to GDI+ basic graphics functionality. More advanced functi...
Definition actions_system_images.hpp:10