Devexpress's xtramessagebox Localization

Source: Internet
Author: User
Original article: devexpress xtramessagebox Localization

The interface library used by the project is devexpress.
It is quite easy to use, but the buttons in the pop-up dialog box xtramessagebox are all in English,
It may cause problems to users,

After searching on the internet, find a simple method to solve this problem, as shown below:
First, define a class that inherits from localizer.
Using devexpress. xtraeditors. controls;


Namespace com. suypower. PGIs. Main
{
Class localizationchs: devexpress. xtraeditors. Controls. localizer
{
Public override string getlocalizedstring (devexpress. xtraeditors. Controls. stringid ID)
{
Switch (ID)
{
Case stringid. xtramessageboxcancelbuttontext:
Return "cancel ";
Case stringid. xtramessageboxokbuttontext:
Return "OK ";
Case stringid. xtramessageboxyesbuttontext:
Return "yes ";
Case stringid. xtramessageboxnobuttontext:
Return "no ";
Case stringid. xtramessageboxignorebuttontext:
Return "Ignore ";
Case stringid. xtramessageboxabortbuttontext:
Return "abort ";
Case stringid. xtramessageboxretrybuttontext:
Return "retry ";
Default:
Return base. getlocalizedstring (ID );
}
}
}
}


After definition, use the following sentence in the main function of system program. CS:
Devexpress. xtraeditors. Controls. localizer. Active = new localizationchs ();

As follows:


Reference: http://www.byywee.com/page/M0/s455/455731.html

Devexpress's xtramessagebox Localization

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.