Screen Tittle Of Popup page

Discussion of application development using iX Developer, including but not limited to getting started, using the functions tab, properties, objects and installation.
Post Reply
kaka
Posts: 2
Joined: Mon Apr 01, 2019 4:11 am

Screen Tittle Of Popup page

Post by kaka »

Hi Everyone ,
I have a problem about of multiple languages.
How i can change screen title name of popup page when the set language action is activated.
Good day..

User avatar
Russ C.
Posts: 213
Joined: Thu Nov 16, 2017 3:32 pm
Contact:

Re: Screen Tittle Of Popup page

Post by Russ C. »

This could be done by creating a hidden text object on the popup screen and translating its text in the Multiple Languages screen. Then in the scripting for the popup on the screen opened event set the screen's title to the text object's text.
2019-04-29 15_51_09-iX Developer 2.40 SP2 - Project5.png
2019-04-29 15_51_09-iX Developer 2.40 SP2 - Project5.png (2.77 KiB) Viewed 2904 times

Code: Select all

		void Screen2_Opened(System.Object sender, System.EventArgs e)
		{
			this.ScreenTitle = Text1.Text;
		}
Best regards,

Russ
(801) 708-6690
Technical Support
Contact Us

Beijer Electronics AB
http://www.beijerelectronics.us

Post Reply