Libraries: EasyAndFastGUI library for creating graphical interfaces - page 26

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Thanks, I will try. Let you know
It turned out to be an encoding problem and many files were not read correctly (not only the ones I passed to you in the archive above).
I will try to release an update for the script today.
It turned out to be an encoding problem and many files were not read correctly (not only the ones I passed to you in the archive above).
I will try to release an update for the script today.
An update (version 2.1) with a fix has been published.
Examples of ready-made graphical interfaces are shown in the screenshots below.
An update(v2.13) has been released:
An update has been released (v2.13):
An update ( v2.13 ) is out.
Hello,
I trying to change default tables color Headers, i added the marked line into the SetDefaultParams. in this case with the intention to change to Blue.. But it is not working. it must be an obvious anwer, but i struggle with it...
Thanks for help!
Hello,
I trying to change default tables color Headers, i added the marked line into the SetDefaultParams. in this case with the intention to change to Blue.. But it is not working. it must be an obvious anwer, but i struggle with it...
Thanks for help!
Thanks for the message!
There will be a fix in the next update.
As a temporary solution you can make changes in CTable::SetDefaultParameters() method:
You can do the same for the other colors of the table.
In this case, the color will not change when you change the theme (Light/Dark).
You can also set and override properties in the custom class in which you create the control. Because in classes with default properties, your changes will not save when the library is updated.
Thanks for the message!
There will be a fix in the next update.
As a temporary solution you can make changes in CTable::SetDefaultParameters() method:
You can do the same for the other colors of the table.
In this case, the color will not change when you change the theme (Light/Dark).
You can also set and override properties in the custom class in which you create the control. Because in classes with default properties, your changes will not save when the library is updated
Thanks, It didn´t works. But I did this to fix: into static void CTheme::Light(void), directly changed the color, so I have the wanted color even changing the theme
Thanks, It didn´t works. But I did this to fix: into static void CTheme::Light(void), directly changed the color, so I have the wanted color even changing the theme
Yes, that's possible too! 👍
But I will still think about how to make a more universal solution so as not to make changes to the library code.
For example, this is now implemented in the CButton control, where if you want to set a different color, you have to specify that the button color is not tied to a color scheme:
m_button_sell.IsStaticColors(true);