xtd 0.2.0
Loading...
Searching...
No Matches
xtd::forms::countries Class Referencefinal
Inheritance diagram for xtd::forms::countries:
xtd::static_object

Definition

Provides a collection of xtd::forms::country for all countries in the world. This class cannot be inherited.

Header
#include <xtd/forms/countries>
Namespace
xtd::forms
Library
xtd.forms
Examples
The following code example demonstrates the use of countries component.
#include <xtd/forms/application>
#include <xtd/forms/countries>
#include <xtd/forms/form>
#include <xtd/forms/label>
#include <xtd/forms/list_box>
#include <xtd/forms/picture_box>
#include <xtd/diagnostics/debug>
#include <xtd/drawing/system_colors>
#include <xtd/startup>
using namespace std;
using namespace xtd;
using namespace xtd::drawing;
using namespace xtd::forms;
namespace countries_example {
class main_form : public form {
public:
static auto main() {
//locale::global(locale {"fr_FR.utf-8"});
application::run(main_form());
}
main_form() {
text("Countries example");
client_size({600, 500});
countries_list_box.parent(*this);
countries_list_box.location({10, 10});
countries_list_box.size({200, 480});
countries_list_box.anchor(anchor_styles::left | anchor_styles::top | anchor_styles::bottom);
for (auto country : countries::get_countries())
countries_list_box.items().push_back({country.name(), country});
countries_list_box.sorted(true);
countries_list_box.selected_value_changed += [&] {
country_flag_picture_box.image(bitmap(any_cast<forms::country>(countries_list_box.selected_item().tag()).flag(), {256, 192}));
country_flag_squared_picture_box.image(bitmap(any_cast<forms::country>(countries_list_box.selected_item().tag()).flag_squared(), {128, 128}));
country_emoticon_label.text(any_cast<forms::country>(countries_list_box.selected_item().tag()).emoticon());
country_code_label.text(ustring::format("Codes : {} ({}) / {}", any_cast<forms::country>(countries_list_box.selected_item().tag()).alpha_3_code(), any_cast<forms::country>(countries_list_box.selected_item().tag()).alpha_2_code(), any_cast<forms::country>(countries_list_box.selected_item().tag()).numeric_code()));
};
countries_list_box.selected_item(countries::belgium().name());
country_panel.parent(*this);
country_panel.location({220, 10});
country_panel.size({370, 480});
country_panel.anchor(anchor_styles::left | anchor_styles::top | anchor_styles::right | anchor_styles::bottom);
country_panel.border_style(forms::border_style::fixed_3d);
country_panel.back_color(system_colors::window());
country_panel.auto_scroll(true);
country_flag_picture_box.parent(country_panel);
country_flag_picture_box.location({10, 10});
country_flag_picture_box.size({256, 192});
country_flag_squared_picture_box.parent(country_panel);
country_flag_squared_picture_box.location({10, 212});
country_flag_squared_picture_box.size({128, 128});
country_emoticon_label.flat_style(xtd::forms::flat_style::system);
country_emoticon_label.parent(country_panel);
country_emoticon_label.font({country_emoticon_label.font(), 64});
country_emoticon_label.location({10, 350});
country_emoticon_label.auto_size(true);
country_code_label.parent(country_panel);
country_code_label.location({10, 445});
country_code_label.auto_size(true);
}
private:
list_box countries_list_box;
panel country_panel;
picture_box country_flag_picture_box;
picture_box country_flag_squared_picture_box;
label country_emoticon_label;
label country_code_label;
};
}
startup_(countries_example::main_form::main);
Encapsulates a GDI+ bitmap, which consists of the pixel data for a graphics image and its attributes....
Definition bitmap.h:26
Provides a collection of xtd::forms::country for all countries in the world. This class cannot be inh...
Definition countries.h:22
Represent a country with name, alpha codes, numeric code, emoticon and flag.
Definition country.h:32
virtual const xtd::ustring name() const noexcept
Gets the country name.
Represents a window or dialog box that makes up an application's user interface.
Definition form.h:52
Represents a standard Windows label.
Definition label.h:36
Represents a standard Windows list box.
Definition list_box.h:31
Used to group collections of controls.
Definition panel.h:30
Represents a standard Windows picture box.
Definition picture_box.h:32
#define startup_(main_method)
Defines the entry point to be called when the application loads. Generally this is set either to the ...
Definition startup.h:166
@ text
The xtd::forms::status_bar_panel displays text in the standard font.
@ system
The appearance of the control is determined by the user's operating system.
The xtd::drawing namespace provides access to GDI+ basic graphics functionality. More advanced functi...
Definition actions_system_images.h:11
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.h:12
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10

Public Static Properties

static const country afghanistan ()
 A system-defined country object.
 
static const country aland_islands ()
 A system-defined country object.
 
static const country albania ()
 A system-defined country object.
 
static const country algeria ()
 A system-defined country object.
 
static const country american_samoa ()
 A system-defined country object.
 
static const country andorra ()
 A system-defined country object.
 
static const country angola ()
 A system-defined country object.
 
static const country anguilla ()
 A system-defined country object.
 
static const country antarctica ()
 A system-defined country object.
 
static const country antigua_and_barbuda ()
 A system-defined country object.
 
static const country argentina ()
 A system-defined country object.
 
static const country armenia ()
 A system-defined country object.
 
static const country aruba ()
 A system-defined country object.
 
static const country australia ()
 A system-defined country object.
 
static const country austria ()
 A system-defined country object.
 
static const country azerbaijan ()
 A system-defined country object.
 
static const country bahamas ()
 A system-defined country object.
 
static const country bahrain ()
 A system-defined country object.
 
static const country bangladesh ()
 A system-defined country object.
 
static const country barbados ()
 A system-defined country object.
 
static const country belarus ()
 A system-defined country object.
 
static const country belgium ()
 A system-defined country object.
 
static const country belize ()
 A system-defined country object.
 
static const country benin ()
 A system-defined country object.
 
static const country bermuda ()
 A system-defined country object.
 
static const country bhutan ()
 A system-defined country object.
 
static const country bolivia ()
 A system-defined country object.
 
static const country bonaire_sint_eustatius_and_saba ()
 A system-defined country object.
 
static const country bosnia_and_herzegovina ()
 A system-defined country object.
 
static const country botswana ()
 A system-defined country object.
 
static const country bouvet_island ()
 A system-defined country object.
 
static const country brazil ()
 A system-defined country object.
 
static const country british_indian_ocean_territory ()
 A system-defined country object.
 
static const country brunei_darussalam ()
 A system-defined country object.
 
static const country bulgaria ()
 A system-defined country object.
 
static const country burkina_faso ()
 A system-defined country object.
 
static const country burundi ()
 A system-defined country object.
 
static const country cabo_verde ()
 A system-defined country object.
 
static const country cambodia ()
 A system-defined country object.
 
static const country cameroon ()
 A system-defined country object.
 
static const country canada ()
 A system-defined country object.
 
static const country cayman_islands ()
 A system-defined country object.
 
static const country central_african_republic ()
 A system-defined country object.
 
static const country chad ()
 A system-defined country object.
 
static const country chile ()
 A system-defined country object.
 
static const country china ()
 A system-defined country object.
 
static const country christmas_island ()
 A system-defined country object.
 
static const country cocos_keeling_islands ()
 A system-defined country object.
 
static const country colombia ()
 A system-defined country object.
 
static const country comoros ()
 A system-defined country object.
 
static const country congo ()
 A system-defined country object.
 
static const country democratic_republic_of_the_congo ()
 A system-defined country object.
 
static const country cook_islands ()
 A system-defined country object.
 
static const country costa_rica ()
 A system-defined country object.
 
static const country cote_d_ivoire ()
 A system-defined country object.
 
static const country croatia ()
 A system-defined country object.
 
static const country cuba ()
 A system-defined country object.
 
static const country curacao ()
 A system-defined country object.
 
static const country cyprus ()
 A system-defined country object.
 
static const country czechia ()
 A system-defined country object.
 
static const country denmark ()
 A system-defined country object.
 
static const country djibouti ()
 A system-defined country object.
 
static const country dominica ()
 A system-defined country object.
 
static const country dominican_republic ()
 A system-defined country object.
 
static const country ecuador ()
 A system-defined country object.
 
static const country egypt ()
 A system-defined country object.
 
static const country el_salvador ()
 A system-defined country object.
 
static const country equatorial_guinea ()
 A system-defined country object.
 
static const country eritrea ()
 A system-defined country object.
 
static const country estonia ()
 A system-defined country object.
 
static const country eswatini ()
 A system-defined country object.
 
static const country ethiopia ()
 A system-defined country object.
 
static const country falkland_islands ()
 A system-defined country object.
 
static const country faroe_islands ()
 A system-defined country object.
 
static const country fiji ()
 A system-defined country object.
 
static const country finland ()
 A system-defined country object.
 
static const country france ()
 A system-defined country object.
 
static const country french_guiana ()
 A system-defined country object.
 
static const country french_polynesia ()
 A system-defined country object.
 
static const country french_southern_territories ()
 A system-defined country object.
 
static const country gabon ()
 A system-defined country object.
 
static const country gambia ()
 A system-defined country object.
 
static const country georgia ()
 A system-defined country object.
 
static const country germany ()
 A system-defined country object.
 
static const country ghana ()
 A system-defined country object.
 
static const country gibraltar ()
 A system-defined country object.
 
static const country greece ()
 A system-defined country object.
 
static const country greenland ()
 A system-defined country object.
 
static const country grenada ()
 A system-defined country object.
 
static const country guadeloupe ()
 A system-defined country object.
 
static const country guam ()
 A system-defined country object.
 
static const country guatemala ()
 A system-defined country object.
 
static const country guernsey ()
 A system-defined country object.
 
static const country guinea ()
 A system-defined country object.
 
static const country guinea_bissau ()
 A system-defined country object.
 
static const country guyana ()
 A system-defined country object.
 
static const country haiti ()
 A system-defined country object.
 
static const country heard_island_and_mcdonald_islands ()
 A system-defined country object.
 
static const country holy_see ()
 A system-defined country object.
 
static const country honduras ()
 A system-defined country object.
 
static const country hong_kong ()
 A system-defined country object.
 
static const country hungary ()
 A system-defined country object.
 
static const country iceland ()
 A system-defined country object.
 
static const country india ()
 A system-defined country object.
 
static const country indonesia ()
 A system-defined country object.
 
static const country iran ()
 A system-defined country object.
 
static const country iraq ()
 A system-defined country object.
 
static const country ireland ()
 A system-defined country object.
 
static const country isle_of_man ()
 A system-defined country object.
 
static const country israel ()
 A system-defined country object.
 
static const country italy ()
 A system-defined country object.
 
static const country jamaica ()
 A system-defined country object.
 
static const country japan ()
 A system-defined country object.
 
static const country jersey ()
 A system-defined country object.
 
static const country jordan ()
 A system-defined country object.
 
static const country kazakhstan ()
 A system-defined country object.
 
static const country kenya ()
 A system-defined country object.
 
static const country kiribati ()
 A system-defined country object.
 
static const country north_korea ()
 A system-defined country object.
 
static const country south_korea ()
 A system-defined country object.
 
static const country kuwait ()
 A system-defined country object.
 
static const country kyrgyzstan ()
 A system-defined country object.
 
static const country lao_people_s_democratic_republic ()
 A system-defined country object.
 
static const country latvia ()
 A system-defined country object.
 
static const country lebanon ()
 A system-defined country object.
 
static const country lesotho ()
 A system-defined country object.
 
static const country liberia ()
 A system-defined country object.
 
static const country libya ()
 A system-defined country object.
 
static const country liechtenstein ()
 A system-defined country object.
 
static const country lithuania ()
 A system-defined country object.
 
static const country luxembourg ()
 A system-defined country object.
 
static const country macao ()
 A system-defined country object.
 
static const country madagascar ()
 A system-defined country object.
 
static const country malawi ()
 A system-defined country object.
 
static const country malaysia ()
 A system-defined country object.
 
static const country maldives ()
 A system-defined country object.
 
static const country mali ()
 A system-defined country object.
 
static const country malta ()
 A system-defined country object.
 
static const country marshall_islands ()
 A system-defined country object.
 
static const country martinique ()
 A system-defined country object.
 
static const country mauritania ()
 A system-defined country object.
 
static const country mauritius ()
 A system-defined country object.
 
static const country mayotte ()
 A system-defined country object.
 
static const country mexico ()
 A system-defined country object.
 
static const country federated_states_of_micronesia ()
 A system-defined country object.
 
static const country moldova ()
 A system-defined country object.
 
static const country monaco ()
 A system-defined country object.
 
static const country mongolia ()
 A system-defined country object.
 
static const country montenegro ()
 A system-defined country object.
 
static const country montserrat ()
 A system-defined country object.
 
static const country morocco ()
 A system-defined country object.
 
static const country mozambique ()
 A system-defined country object.
 
static const country myanmar ()
 A system-defined country object.
 
static const country namibia ()
 A system-defined country object.
 
static const country nauru ()
 A system-defined country object.
 
static const country nepal ()
 A system-defined country object.
 
static const country netherlands ()
 A system-defined country object.
 
static const country new_caledonia ()
 A system-defined country object.
 
static const country new_zealand ()
 A system-defined country object.
 
static const country nicaragua ()
 A system-defined country object.
 
static const country niger ()
 A system-defined country object.
 
static const country nigeria ()
 A system-defined country object.
 
static const country niue ()
 A system-defined country object.
 
static const country norfolk_island ()
 A system-defined country object.
 
static const country north_macedonia ()
 A system-defined country object.
 
static const country northern_mariana_islands ()
 A system-defined country object.
 
static const country norway ()
 A system-defined country object.
 
static const country oman ()
 A system-defined country object.
 
static const country pakistan ()
 A system-defined country object.
 
static const country palau ()
 A system-defined country object.
 
static const country state_of_palestine ()
 A system-defined country object.
 
static const country panama ()
 A system-defined country object.
 
static const country papua_new_guinea ()
 A system-defined country object.
 
static const country paraguay ()
 A system-defined country object.
 
static const country peru ()
 A system-defined country object.
 
static const country philippines ()
 A system-defined country object.
 
static const country pitcairn ()
 A system-defined country object.
 
static const country poland ()
 A system-defined country object.
 
static const country portugal ()
 A system-defined country object.
 
static const country puerto_rico ()
 A system-defined country object.
 
static const country qatar ()
 A system-defined country object.
 
static const country reunion ()
 A system-defined country object.
 
static const country romania ()
 A system-defined country object.
 
static const country russian_federation ()
 A system-defined country object.
 
static const country rwanda ()
 A system-defined country object.
 
static const country saint_barthelemy ()
 A system-defined country object.
 
static const country saint_helena_ascension_and_tristan_da_cunha ()
 A system-defined country object.
 
static const country saint_kitts_and_nevis ()
 A system-defined country object.
 
static const country saint_lucia ()
 A system-defined country object.
 
static const country saint_martin_french_part ()
 A system-defined country object.
 
static const country saint_pierre_and_miquelon ()
 A system-defined country object.
 
static const country saint_vincent_and_the_grenadines ()
 A system-defined country object.
 
static const country samoa ()
 A system-defined country object.
 
static const country san_marino ()
 A system-defined country object.
 
static const country sao_tome_and_principe ()
 A system-defined country object.
 
static const country saudi_arabia ()
 A system-defined country object.
 
static const country senegal ()
 A system-defined country object.
 
static const country serbia ()
 A system-defined country object.
 
static const country seychelles ()
 A system-defined country object.
 
static const country sierra_leone ()
 A system-defined country object.
 
static const country singapore ()
 A system-defined country object.
 
static const country sint_maarten_dutch_part ()
 A system-defined country object.
 
static const country slovakia ()
 A system-defined country object.
 
static const country slovenia ()
 A system-defined country object.
 
static const country solomon_islands ()
 A system-defined country object.
 
static const country somalia ()
 A system-defined country object.
 
static const country south_africa ()
 A system-defined country object.
 
static const country south_georgia_and_the_south_sandwich_islands ()
 A system-defined country object.
 
static const country south_sudan ()
 A system-defined country object.
 
static const country spain ()
 A system-defined country object.
 
static const country sri_lanka ()
 A system-defined country object.
 
static const country sudan ()
 A system-defined country object.
 
static const country suriname ()
 A system-defined country object.
 
static const country svalbard_and_jan_mayen ()
 A system-defined country object.
 
static const country sweden ()
 A system-defined country object.
 
static const country switzerland ()
 A system-defined country object.
 
static const country syrian_arab_republic ()
 A system-defined country object.
 
static const country taiwan_china ()
 A system-defined country object.
 
static const country tajikistan ()
 A system-defined country object.
 
static const country tanzania ()
 A system-defined country object.
 
static const country thailand ()
 A system-defined country object.
 
static const country timor_leste ()
 A system-defined country object.
 
static const country togo ()
 A system-defined country object.
 
static const country tokelau ()
 A system-defined country object.
 
static const country tonga ()
 A system-defined country object.
 
static const country trinidad_and_tobago ()
 A system-defined country object.
 
static const country tunisia ()
 A system-defined country object.
 
static const country turkey ()
 A system-defined country object.
 
static const country turkmenistan ()
 A system-defined country object.
 
static const country turks_and_caicos_islands ()
 A system-defined country object.
 
static const country tuvalu ()
 A system-defined country object.
 
static const country uganda ()
 A system-defined country object.
 
static const country ukraine ()
 A system-defined country object.
 
static const country united_arab_emirates ()
 A system-defined country object.
 
static const country united_kingdom_of_great_britain_and_northern_ireland ()
 A system-defined country object.
 
static const country united_states_of_america ()
 A system-defined country object.
 
static const country united_states_minor_outlying_islands ()
 A system-defined country object.
 
static const country uruguay ()
 A system-defined country object.
 
static const country uzbekistan ()
 A system-defined country object.
 
static const country vanuatu ()
 A system-defined country object.
 
static const country venezuela ()
 A system-defined country object.
 
static const country viet_nam ()
 A system-defined country object.
 
static const country british_virgin_islands ()
 A system-defined country object.
 
static const country united_states_virgin_islands ()
 A system-defined country object.
 
static const country wallis_and_futuna ()
 A system-defined country object.
 
static const country western_sahara ()
 A system-defined country object.
 
static const country yemen ()
 A system-defined country object.
 
static const country zambia ()
 A system-defined country object.
 
static const country zimbabwe ()
 A system-defined country object.
 

Public Static Methods

static const std::vector< country > & get_countries ()
 Gets countries collection.
 

Member Function Documentation

◆ afghanistan()

static const country xtd::forms::countries::afghanistan ( )
static

A system-defined country object.

◆ aland_islands()

static const country xtd::forms::countries::aland_islands ( )
static

A system-defined country object.

◆ albania()

static const country xtd::forms::countries::albania ( )
static

A system-defined country object.

◆ algeria()

static const country xtd::forms::countries::algeria ( )
static

A system-defined country object.

◆ american_samoa()

static const country xtd::forms::countries::american_samoa ( )
static

A system-defined country object.

◆ andorra()

static const country xtd::forms::countries::andorra ( )
static

A system-defined country object.

◆ angola()

static const country xtd::forms::countries::angola ( )
static

A system-defined country object.

◆ anguilla()

static const country xtd::forms::countries::anguilla ( )
static

A system-defined country object.

◆ antarctica()

static const country xtd::forms::countries::antarctica ( )
static

A system-defined country object.

◆ antigua_and_barbuda()

static const country xtd::forms::countries::antigua_and_barbuda ( )
static

A system-defined country object.

◆ argentina()

static const country xtd::forms::countries::argentina ( )
static

A system-defined country object.

◆ armenia()

static const country xtd::forms::countries::armenia ( )
static

A system-defined country object.

◆ aruba()

static const country xtd::forms::countries::aruba ( )
static

A system-defined country object.

◆ australia()

static const country xtd::forms::countries::australia ( )
static

A system-defined country object.

◆ austria()

static const country xtd::forms::countries::austria ( )
static

A system-defined country object.

◆ azerbaijan()

static const country xtd::forms::countries::azerbaijan ( )
static

A system-defined country object.

◆ bahamas()

static const country xtd::forms::countries::bahamas ( )
static

A system-defined country object.

◆ bahrain()

static const country xtd::forms::countries::bahrain ( )
static

A system-defined country object.

◆ bangladesh()

static const country xtd::forms::countries::bangladesh ( )
static

A system-defined country object.

◆ barbados()

static const country xtd::forms::countries::barbados ( )
static

A system-defined country object.

◆ belarus()

static const country xtd::forms::countries::belarus ( )
static

A system-defined country object.

◆ belgium()

static const country xtd::forms::countries::belgium ( )
static

A system-defined country object.

◆ belize()

static const country xtd::forms::countries::belize ( )
static

A system-defined country object.

◆ benin()

static const country xtd::forms::countries::benin ( )
static

A system-defined country object.

◆ bermuda()

static const country xtd::forms::countries::bermuda ( )
static

A system-defined country object.

◆ bhutan()

static const country xtd::forms::countries::bhutan ( )
static

A system-defined country object.

◆ bolivia()

static const country xtd::forms::countries::bolivia ( )
static

A system-defined country object.

◆ bonaire_sint_eustatius_and_saba()

static const country xtd::forms::countries::bonaire_sint_eustatius_and_saba ( )
static

A system-defined country object.

◆ bosnia_and_herzegovina()

static const country xtd::forms::countries::bosnia_and_herzegovina ( )
static

A system-defined country object.

◆ botswana()

static const country xtd::forms::countries::botswana ( )
static

A system-defined country object.

◆ bouvet_island()

static const country xtd::forms::countries::bouvet_island ( )
static

A system-defined country object.

◆ brazil()

static const country xtd::forms::countries::brazil ( )
static

A system-defined country object.

◆ british_indian_ocean_territory()

static const country xtd::forms::countries::british_indian_ocean_territory ( )
static

A system-defined country object.

◆ british_virgin_islands()

static const country xtd::forms::countries::british_virgin_islands ( )
static

A system-defined country object.

◆ brunei_darussalam()

static const country xtd::forms::countries::brunei_darussalam ( )
static

A system-defined country object.

◆ bulgaria()

static const country xtd::forms::countries::bulgaria ( )
static

A system-defined country object.

◆ burkina_faso()

static const country xtd::forms::countries::burkina_faso ( )
static

A system-defined country object.

◆ burundi()

static const country xtd::forms::countries::burundi ( )
static

A system-defined country object.

◆ cabo_verde()

static const country xtd::forms::countries::cabo_verde ( )
static

A system-defined country object.

◆ cambodia()

static const country xtd::forms::countries::cambodia ( )
static

A system-defined country object.

◆ cameroon()

static const country xtd::forms::countries::cameroon ( )
static

A system-defined country object.

◆ canada()

static const country xtd::forms::countries::canada ( )
static

A system-defined country object.

◆ cayman_islands()

static const country xtd::forms::countries::cayman_islands ( )
static

A system-defined country object.

◆ central_african_republic()

static const country xtd::forms::countries::central_african_republic ( )
static

A system-defined country object.

◆ chad()

static const country xtd::forms::countries::chad ( )
static

A system-defined country object.

◆ chile()

static const country xtd::forms::countries::chile ( )
static

A system-defined country object.

◆ china()

static const country xtd::forms::countries::china ( )
static

A system-defined country object.

◆ christmas_island()

static const country xtd::forms::countries::christmas_island ( )
static

A system-defined country object.

◆ cocos_keeling_islands()

static const country xtd::forms::countries::cocos_keeling_islands ( )
static

A system-defined country object.

◆ colombia()

static const country xtd::forms::countries::colombia ( )
static

A system-defined country object.

◆ comoros()

static const country xtd::forms::countries::comoros ( )
static

A system-defined country object.

◆ congo()

static const country xtd::forms::countries::congo ( )
static

A system-defined country object.

◆ cook_islands()

static const country xtd::forms::countries::cook_islands ( )
static

A system-defined country object.

◆ costa_rica()

static const country xtd::forms::countries::costa_rica ( )
static

A system-defined country object.

◆ cote_d_ivoire()

static const country xtd::forms::countries::cote_d_ivoire ( )
static

A system-defined country object.

◆ croatia()

static const country xtd::forms::countries::croatia ( )
static

A system-defined country object.

◆ cuba()

static const country xtd::forms::countries::cuba ( )
static

A system-defined country object.

◆ curacao()

static const country xtd::forms::countries::curacao ( )
static

A system-defined country object.

◆ cyprus()

static const country xtd::forms::countries::cyprus ( )
static

A system-defined country object.

◆ czechia()

static const country xtd::forms::countries::czechia ( )
static

A system-defined country object.

◆ democratic_republic_of_the_congo()

static const country xtd::forms::countries::democratic_republic_of_the_congo ( )
static

A system-defined country object.

◆ denmark()

static const country xtd::forms::countries::denmark ( )
static

A system-defined country object.

◆ djibouti()

static const country xtd::forms::countries::djibouti ( )
static

A system-defined country object.

◆ dominica()

static const country xtd::forms::countries::dominica ( )
static

A system-defined country object.

◆ dominican_republic()

static const country xtd::forms::countries::dominican_republic ( )
static

A system-defined country object.

◆ ecuador()

static const country xtd::forms::countries::ecuador ( )
static

A system-defined country object.

◆ egypt()

static const country xtd::forms::countries::egypt ( )
static

A system-defined country object.

◆ el_salvador()

static const country xtd::forms::countries::el_salvador ( )
static

A system-defined country object.

◆ equatorial_guinea()

static const country xtd::forms::countries::equatorial_guinea ( )
static

A system-defined country object.

◆ eritrea()

static const country xtd::forms::countries::eritrea ( )
static

A system-defined country object.

◆ estonia()

static const country xtd::forms::countries::estonia ( )
static

A system-defined country object.

◆ eswatini()

static const country xtd::forms::countries::eswatini ( )
static

A system-defined country object.

◆ ethiopia()

static const country xtd::forms::countries::ethiopia ( )
static

A system-defined country object.

◆ falkland_islands()

static const country xtd::forms::countries::falkland_islands ( )
static

A system-defined country object.

◆ faroe_islands()

static const country xtd::forms::countries::faroe_islands ( )
static

A system-defined country object.

◆ federated_states_of_micronesia()

static const country xtd::forms::countries::federated_states_of_micronesia ( )
static

A system-defined country object.

◆ fiji()

static const country xtd::forms::countries::fiji ( )
static

A system-defined country object.

◆ finland()

static const country xtd::forms::countries::finland ( )
static

A system-defined country object.

◆ france()

static const country xtd::forms::countries::france ( )
static

A system-defined country object.

◆ french_guiana()

static const country xtd::forms::countries::french_guiana ( )
static

A system-defined country object.

◆ french_polynesia()

static const country xtd::forms::countries::french_polynesia ( )
static

A system-defined country object.

◆ french_southern_territories()

static const country xtd::forms::countries::french_southern_territories ( )
static

A system-defined country object.

◆ gabon()

static const country xtd::forms::countries::gabon ( )
static

A system-defined country object.

◆ gambia()

static const country xtd::forms::countries::gambia ( )
static

A system-defined country object.

◆ georgia()

static const country xtd::forms::countries::georgia ( )
static

A system-defined country object.

◆ germany()

static const country xtd::forms::countries::germany ( )
static

A system-defined country object.

◆ get_countries()

static const std::vector< country > & xtd::forms::countries::get_countries ( )
static

Gets countries collection.

Returns
Countries collection.

◆ ghana()

static const country xtd::forms::countries::ghana ( )
static

A system-defined country object.

◆ gibraltar()

static const country xtd::forms::countries::gibraltar ( )
static

A system-defined country object.

◆ greece()

static const country xtd::forms::countries::greece ( )
static

A system-defined country object.

◆ greenland()

static const country xtd::forms::countries::greenland ( )
static

A system-defined country object.

◆ grenada()

static const country xtd::forms::countries::grenada ( )
static

A system-defined country object.

◆ guadeloupe()

static const country xtd::forms::countries::guadeloupe ( )
static

A system-defined country object.

◆ guam()

static const country xtd::forms::countries::guam ( )
static

A system-defined country object.

◆ guatemala()

static const country xtd::forms::countries::guatemala ( )
static

A system-defined country object.

◆ guernsey()

static const country xtd::forms::countries::guernsey ( )
static

A system-defined country object.

◆ guinea()

static const country xtd::forms::countries::guinea ( )
static

A system-defined country object.

◆ guinea_bissau()

static const country xtd::forms::countries::guinea_bissau ( )
static

A system-defined country object.

◆ guyana()

static const country xtd::forms::countries::guyana ( )
static

A system-defined country object.

◆ haiti()

static const country xtd::forms::countries::haiti ( )
static

A system-defined country object.

◆ heard_island_and_mcdonald_islands()

static const country xtd::forms::countries::heard_island_and_mcdonald_islands ( )
static

A system-defined country object.

◆ holy_see()

static const country xtd::forms::countries::holy_see ( )
static

A system-defined country object.

◆ honduras()

static const country xtd::forms::countries::honduras ( )
static

A system-defined country object.

◆ hong_kong()

static const country xtd::forms::countries::hong_kong ( )
static

A system-defined country object.

◆ hungary()

static const country xtd::forms::countries::hungary ( )
static

A system-defined country object.

◆ iceland()

static const country xtd::forms::countries::iceland ( )
static

A system-defined country object.

◆ india()

static const country xtd::forms::countries::india ( )
static

A system-defined country object.

◆ indonesia()

static const country xtd::forms::countries::indonesia ( )
static

A system-defined country object.

◆ iran()

static const country xtd::forms::countries::iran ( )
static

A system-defined country object.

◆ iraq()

static const country xtd::forms::countries::iraq ( )
static

A system-defined country object.

◆ ireland()

static const country xtd::forms::countries::ireland ( )
static

A system-defined country object.

◆ isle_of_man()

static const country xtd::forms::countries::isle_of_man ( )
static

A system-defined country object.

◆ israel()

static const country xtd::forms::countries::israel ( )
static

A system-defined country object.

◆ italy()

static const country xtd::forms::countries::italy ( )
static

A system-defined country object.

◆ jamaica()

static const country xtd::forms::countries::jamaica ( )
static

A system-defined country object.

◆ japan()

static const country xtd::forms::countries::japan ( )
static

A system-defined country object.

◆ jersey()

static const country xtd::forms::countries::jersey ( )
static

A system-defined country object.

◆ jordan()

static const country xtd::forms::countries::jordan ( )
static

A system-defined country object.

◆ kazakhstan()

static const country xtd::forms::countries::kazakhstan ( )
static

A system-defined country object.

◆ kenya()

static const country xtd::forms::countries::kenya ( )
static

A system-defined country object.

◆ kiribati()

static const country xtd::forms::countries::kiribati ( )
static

A system-defined country object.

◆ kuwait()

static const country xtd::forms::countries::kuwait ( )
static

A system-defined country object.

◆ kyrgyzstan()

static const country xtd::forms::countries::kyrgyzstan ( )
static

A system-defined country object.

◆ lao_people_s_democratic_republic()

static const country xtd::forms::countries::lao_people_s_democratic_republic ( )
static

A system-defined country object.

◆ latvia()

static const country xtd::forms::countries::latvia ( )
static

A system-defined country object.

◆ lebanon()

static const country xtd::forms::countries::lebanon ( )
static

A system-defined country object.

◆ lesotho()

static const country xtd::forms::countries::lesotho ( )
static

A system-defined country object.

◆ liberia()

static const country xtd::forms::countries::liberia ( )
static

A system-defined country object.

◆ libya()

static const country xtd::forms::countries::libya ( )
static

A system-defined country object.

◆ liechtenstein()

static const country xtd::forms::countries::liechtenstein ( )
static

A system-defined country object.

◆ lithuania()

static const country xtd::forms::countries::lithuania ( )
static

A system-defined country object.

◆ luxembourg()

static const country xtd::forms::countries::luxembourg ( )
static

A system-defined country object.

◆ macao()

static const country xtd::forms::countries::macao ( )
static

A system-defined country object.

◆ madagascar()

static const country xtd::forms::countries::madagascar ( )
static

A system-defined country object.

◆ malawi()

static const country xtd::forms::countries::malawi ( )
static

A system-defined country object.

◆ malaysia()

static const country xtd::forms::countries::malaysia ( )
static

A system-defined country object.

◆ maldives()

static const country xtd::forms::countries::maldives ( )
static

A system-defined country object.

◆ mali()

static const country xtd::forms::countries::mali ( )
static

A system-defined country object.

◆ malta()

static const country xtd::forms::countries::malta ( )
static

A system-defined country object.

◆ marshall_islands()

static const country xtd::forms::countries::marshall_islands ( )
static

A system-defined country object.

◆ martinique()

static const country xtd::forms::countries::martinique ( )
static

A system-defined country object.

◆ mauritania()

static const country xtd::forms::countries::mauritania ( )
static

A system-defined country object.

◆ mauritius()

static const country xtd::forms::countries::mauritius ( )
static

A system-defined country object.

◆ mayotte()

static const country xtd::forms::countries::mayotte ( )
static

A system-defined country object.

◆ mexico()

static const country xtd::forms::countries::mexico ( )
static

A system-defined country object.

◆ moldova()

static const country xtd::forms::countries::moldova ( )
static

A system-defined country object.

◆ monaco()

static const country xtd::forms::countries::monaco ( )
static

A system-defined country object.

◆ mongolia()

static const country xtd::forms::countries::mongolia ( )
static

A system-defined country object.

◆ montenegro()

static const country xtd::forms::countries::montenegro ( )
static

A system-defined country object.

◆ montserrat()

static const country xtd::forms::countries::montserrat ( )
static

A system-defined country object.

◆ morocco()

static const country xtd::forms::countries::morocco ( )
static

A system-defined country object.

◆ mozambique()

static const country xtd::forms::countries::mozambique ( )
static

A system-defined country object.

◆ myanmar()

static const country xtd::forms::countries::myanmar ( )
static

A system-defined country object.

◆ namibia()

static const country xtd::forms::countries::namibia ( )
static

A system-defined country object.

◆ nauru()

static const country xtd::forms::countries::nauru ( )
static

A system-defined country object.

◆ nepal()

static const country xtd::forms::countries::nepal ( )
static

A system-defined country object.

◆ netherlands()

static const country xtd::forms::countries::netherlands ( )
static

A system-defined country object.

◆ new_caledonia()

static const country xtd::forms::countries::new_caledonia ( )
static

A system-defined country object.

◆ new_zealand()

static const country xtd::forms::countries::new_zealand ( )
static

A system-defined country object.

◆ nicaragua()

static const country xtd::forms::countries::nicaragua ( )
static

A system-defined country object.

◆ niger()

static const country xtd::forms::countries::niger ( )
static

A system-defined country object.

◆ nigeria()

static const country xtd::forms::countries::nigeria ( )
static

A system-defined country object.

◆ niue()

static const country xtd::forms::countries::niue ( )
static

A system-defined country object.

◆ norfolk_island()

static const country xtd::forms::countries::norfolk_island ( )
static

A system-defined country object.

◆ north_korea()

static const country xtd::forms::countries::north_korea ( )
static

A system-defined country object.

◆ north_macedonia()

static const country xtd::forms::countries::north_macedonia ( )
static

A system-defined country object.

◆ northern_mariana_islands()

static const country xtd::forms::countries::northern_mariana_islands ( )
static

A system-defined country object.

◆ norway()

static const country xtd::forms::countries::norway ( )
static

A system-defined country object.

◆ oman()

static const country xtd::forms::countries::oman ( )
static

A system-defined country object.

◆ pakistan()

static const country xtd::forms::countries::pakistan ( )
static

A system-defined country object.

◆ palau()

static const country xtd::forms::countries::palau ( )
static

A system-defined country object.

◆ panama()

static const country xtd::forms::countries::panama ( )
static

A system-defined country object.

◆ papua_new_guinea()

static const country xtd::forms::countries::papua_new_guinea ( )
static

A system-defined country object.

◆ paraguay()

static const country xtd::forms::countries::paraguay ( )
static

A system-defined country object.

◆ peru()

static const country xtd::forms::countries::peru ( )
static

A system-defined country object.

◆ philippines()

static const country xtd::forms::countries::philippines ( )
static

A system-defined country object.

◆ pitcairn()

static const country xtd::forms::countries::pitcairn ( )
static

A system-defined country object.

◆ poland()

static const country xtd::forms::countries::poland ( )
static

A system-defined country object.

◆ portugal()

static const country xtd::forms::countries::portugal ( )
static

A system-defined country object.

◆ puerto_rico()

static const country xtd::forms::countries::puerto_rico ( )
static

A system-defined country object.

◆ qatar()

static const country xtd::forms::countries::qatar ( )
static

A system-defined country object.

◆ reunion()

static const country xtd::forms::countries::reunion ( )
static

A system-defined country object.

◆ romania()

static const country xtd::forms::countries::romania ( )
static

A system-defined country object.

◆ russian_federation()

static const country xtd::forms::countries::russian_federation ( )
static

A system-defined country object.

◆ rwanda()

static const country xtd::forms::countries::rwanda ( )
static

A system-defined country object.

◆ saint_barthelemy()

static const country xtd::forms::countries::saint_barthelemy ( )
static

A system-defined country object.

◆ saint_helena_ascension_and_tristan_da_cunha()

static const country xtd::forms::countries::saint_helena_ascension_and_tristan_da_cunha ( )
static

A system-defined country object.

◆ saint_kitts_and_nevis()

static const country xtd::forms::countries::saint_kitts_and_nevis ( )
static

A system-defined country object.

◆ saint_lucia()

static const country xtd::forms::countries::saint_lucia ( )
static

A system-defined country object.

◆ saint_martin_french_part()

static const country xtd::forms::countries::saint_martin_french_part ( )
static

A system-defined country object.

◆ saint_pierre_and_miquelon()

static const country xtd::forms::countries::saint_pierre_and_miquelon ( )
static

A system-defined country object.

◆ saint_vincent_and_the_grenadines()

static const country xtd::forms::countries::saint_vincent_and_the_grenadines ( )
static

A system-defined country object.

◆ samoa()

static const country xtd::forms::countries::samoa ( )
static

A system-defined country object.

◆ san_marino()

static const country xtd::forms::countries::san_marino ( )
static

A system-defined country object.

◆ sao_tome_and_principe()

static const country xtd::forms::countries::sao_tome_and_principe ( )
static

A system-defined country object.

◆ saudi_arabia()

static const country xtd::forms::countries::saudi_arabia ( )
static

A system-defined country object.

◆ senegal()

static const country xtd::forms::countries::senegal ( )
static

A system-defined country object.

◆ serbia()

static const country xtd::forms::countries::serbia ( )
static

A system-defined country object.

◆ seychelles()

static const country xtd::forms::countries::seychelles ( )
static

A system-defined country object.

◆ sierra_leone()

static const country xtd::forms::countries::sierra_leone ( )
static

A system-defined country object.

◆ singapore()

static const country xtd::forms::countries::singapore ( )
static

A system-defined country object.

◆ sint_maarten_dutch_part()

static const country xtd::forms::countries::sint_maarten_dutch_part ( )
static

A system-defined country object.

◆ slovakia()

static const country xtd::forms::countries::slovakia ( )
static

A system-defined country object.

◆ slovenia()

static const country xtd::forms::countries::slovenia ( )
static

A system-defined country object.

◆ solomon_islands()

static const country xtd::forms::countries::solomon_islands ( )
static

A system-defined country object.

◆ somalia()

static const country xtd::forms::countries::somalia ( )
static

A system-defined country object.

◆ south_africa()

static const country xtd::forms::countries::south_africa ( )
static

A system-defined country object.

◆ south_georgia_and_the_south_sandwich_islands()

static const country xtd::forms::countries::south_georgia_and_the_south_sandwich_islands ( )
static

A system-defined country object.

◆ south_korea()

static const country xtd::forms::countries::south_korea ( )
static

A system-defined country object.

◆ south_sudan()

static const country xtd::forms::countries::south_sudan ( )
static

A system-defined country object.

◆ spain()

static const country xtd::forms::countries::spain ( )
static

A system-defined country object.

◆ sri_lanka()

static const country xtd::forms::countries::sri_lanka ( )
static

A system-defined country object.

◆ state_of_palestine()

static const country xtd::forms::countries::state_of_palestine ( )
static

A system-defined country object.

◆ sudan()

static const country xtd::forms::countries::sudan ( )
static

A system-defined country object.

◆ suriname()

static const country xtd::forms::countries::suriname ( )
static

A system-defined country object.

◆ svalbard_and_jan_mayen()

static const country xtd::forms::countries::svalbard_and_jan_mayen ( )
static

A system-defined country object.

◆ sweden()

static const country xtd::forms::countries::sweden ( )
static

A system-defined country object.

◆ switzerland()

static const country xtd::forms::countries::switzerland ( )
static

A system-defined country object.

◆ syrian_arab_republic()

static const country xtd::forms::countries::syrian_arab_republic ( )
static

A system-defined country object.

◆ taiwan_china()

static const country xtd::forms::countries::taiwan_china ( )
static

A system-defined country object.

◆ tajikistan()

static const country xtd::forms::countries::tajikistan ( )
static

A system-defined country object.

◆ tanzania()

static const country xtd::forms::countries::tanzania ( )
static

A system-defined country object.

◆ thailand()

static const country xtd::forms::countries::thailand ( )
static

A system-defined country object.

◆ timor_leste()

static const country xtd::forms::countries::timor_leste ( )
static

A system-defined country object.

◆ togo()

static const country xtd::forms::countries::togo ( )
static

A system-defined country object.

◆ tokelau()

static const country xtd::forms::countries::tokelau ( )
static

A system-defined country object.

◆ tonga()

static const country xtd::forms::countries::tonga ( )
static

A system-defined country object.

◆ trinidad_and_tobago()

static const country xtd::forms::countries::trinidad_and_tobago ( )
static

A system-defined country object.

◆ tunisia()

static const country xtd::forms::countries::tunisia ( )
static

A system-defined country object.

◆ turkey()

static const country xtd::forms::countries::turkey ( )
static

A system-defined country object.

◆ turkmenistan()

static const country xtd::forms::countries::turkmenistan ( )
static

A system-defined country object.

◆ turks_and_caicos_islands()

static const country xtd::forms::countries::turks_and_caicos_islands ( )
static

A system-defined country object.

◆ tuvalu()

static const country xtd::forms::countries::tuvalu ( )
static

A system-defined country object.

◆ uganda()

static const country xtd::forms::countries::uganda ( )
static

A system-defined country object.

◆ ukraine()

static const country xtd::forms::countries::ukraine ( )
static

A system-defined country object.

◆ united_arab_emirates()

static const country xtd::forms::countries::united_arab_emirates ( )
static

A system-defined country object.

◆ united_kingdom_of_great_britain_and_northern_ireland()

static const country xtd::forms::countries::united_kingdom_of_great_britain_and_northern_ireland ( )
static

A system-defined country object.

◆ united_states_minor_outlying_islands()

static const country xtd::forms::countries::united_states_minor_outlying_islands ( )
static

A system-defined country object.

◆ united_states_of_america()

static const country xtd::forms::countries::united_states_of_america ( )
static

A system-defined country object.

◆ united_states_virgin_islands()

static const country xtd::forms::countries::united_states_virgin_islands ( )
static

A system-defined country object.

◆ uruguay()

static const country xtd::forms::countries::uruguay ( )
static

A system-defined country object.

◆ uzbekistan()

static const country xtd::forms::countries::uzbekistan ( )
static

A system-defined country object.

◆ vanuatu()

static const country xtd::forms::countries::vanuatu ( )
static

A system-defined country object.

◆ venezuela()

static const country xtd::forms::countries::venezuela ( )
static

A system-defined country object.

◆ viet_nam()

static const country xtd::forms::countries::viet_nam ( )
static

A system-defined country object.

◆ wallis_and_futuna()

static const country xtd::forms::countries::wallis_and_futuna ( )
static

A system-defined country object.

◆ western_sahara()

static const country xtd::forms::countries::western_sahara ( )
static

A system-defined country object.

◆ yemen()

static const country xtd::forms::countries::yemen ( )
static

A system-defined country object.

◆ zambia()

static const country xtd::forms::countries::zambia ( )
static

A system-defined country object.

◆ zimbabwe()

static const country xtd::forms::countries::zimbabwe ( )
static

A system-defined country object.


The documentation for this class was generated from the following file: