Page 1 of 2
How i can override stimulosft style with my silverlight application style ?
Posted: Sat Jan 14, 2012 5:37 am
by Jalal
Hello,
I have silverlight application with custom style. But stimulosft still in blue style. Can i disable stimulsoft style?
Regards,
Jalal
How i can override stimulosft style with my silverlight application style ?
Posted: Mon Jan 16, 2012 7:20 am
by Alex K.
Hello,
Silverlight version included the following theme:
Office2010Blue,
Office2010Silver,
Office2010Black,
Office2007Blue,
Office2007Silver,
Office2010Mac
If you want to add your own theme you need to have the source code.
Thank you.
How i can override stimulosft style with my silverlight application style ?
Posted: Thu Jan 19, 2012 9:48 am
by RichFinnegan
Hello,
how can you switch themes from the report code?
Thank you
How i can override stimulosft style with my silverlight application style ?
Posted: Fri Jan 20, 2012 3:20 am
by Alex K.
Hello,
Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?
Thank you.
How i can override stimulosft style with my silverlight application style ?
Posted: Mon Jan 23, 2012 5:54 am
by RichFinnegan
What I mean is, how can we change the theme in the viewer control using code.
thanks
How i can override stimulosft style with my silverlight application style ?
Posted: Tue Jan 24, 2012 2:27 am
by HighAley
Hello.
RichFinnegan wrote:What I mean is, how can we change the theme in the viewer control using code.
You could select theme from existing ones by setting the StiOptions.Silverlight.Themes.CurrentTheme property.
Or if you wish to create your own theme, you should take one of our themes from the Stimulsoft.Controls.SL abbembly (you should have our source code for this) and change it as you need.
Thank you.
How i can override stimulosft style with my silverlight application style ?
Posted: Thu Jan 26, 2012 11:47 am
by Lex Lavnikov
Could you please provide a link to a demo app which is able to switch themes?
StiOptions.Silverlight.Themes.CurrentTheme = StiSilverlightThemes.Office2010Silver;
Does change nothing
How i can override stimulosft style with my silverlight application style ?
Posted: Fri Jan 27, 2012 1:25 am
by HighAley
Hello.
Alladin wrote:Could you please provide a link to a demo app which is able to switch themes?
StiOptions.Silverlight.Themes.CurrentTheme = StiSilverlightThemes.Office2010Silver;
Does change nothing
At this time you should use next code to set a default theme.
Code: Select all
StiSettings.Set("StimulsoftApplication", "Theme", StiSilverlightThemes.Office2010Mac);
We are making some changes now and from the next prerelease build next code with work.
Code: Select all
StiOptions.Silverlight.Themes.CurrentTheme = StiSilverlightThemes.Office2010Mac;
Thank you.
How i can override stimulosft style with my silverlight application style ?
Posted: Mon Jan 30, 2012 6:00 am
by Lex Lavnikov
Thank you. It works!
How i can override stimulosft style with my silverlight application style ?
Posted: Mon Jan 30, 2012 7:44 am
by Anton Lozovskiy
Hello,
Let us know if you need any additional help.
Thank you.