I'm trying to modify the flat nature isl file with app stylist
I want to change the colours
Is there a place where you can change the colour green to blue and it is reflected in all the controls throughout the whole style?
Hello,
I am just checking about the progress of this issue. Let me know If you need my further assistance on this issue?
Thank you for using Infragistics Components.
Hello,
If you want to customize the shape of the button through AppStylist, then you should use a resources, which will cover the button, I recommend you to review the following links with helpful information about stilling button, applying a resource to a state, importing and exporting resources
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.1/CLR2.0/html/AppStyling_Styling_a_Button.html
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.1/CLR2.0/html/AppStyling_Applying_a_Resource_to_a_State.html
http://help.infragistics.com/Help/NetAdvantage/WinForms/2011.1/CLR2.0/html/AppStyling_Importing_and_Exporting_Resources.html
I hope the this will help you.
I tried but didn't really get anywhere.
I think I need to spend a bit of time learning the AppStylist
All I wanted to do was create a solid white ultrabutton with curved corners sitting on a blue background!
I am just checking about the progress of this issue. Let me know If you need my further assistance regarding this matter?
Thank you for using Infragistics Components
Hello ,
AppStylist follows hierarchy of styles, for example in “Style Explorer” you see “UI Roles” tree, if you manage appearance of “Base” node, this appearance will be applied to all its children nodes, which appearances are not modified (are default). So if you want to change any color you should iterate through this hierarchy, in order to change it to all needed components. The other approach, which is risky and could break your isl file is the following:Isl files are saved as XML files, so you could open it with some text editor, then let say that you want to change foreColor="79, 79, 79", then you could use find and replace functionality of the text editor, in order to replace foreColor="79, 79, 79", with foreColor="80, 120, 240".
Please let me know if you have any further questions.