Toolbar disappear after first time

Stimulsoft Reports.Silverlight discussion
Locked
Jalal
Posts: 66
Joined: Sat Oct 09, 2010 4:10 am
Location: Palestine

Toolbar disappear after first time

Post by Jalal »

Hello,

While i am using silverlight designer. In the first time when i open the designer, i can see the tool bar in the left. But if i close it, then open it again, i can't see the tool bar.

code :
StiSLDesignerControl _StiDesigneControl = new StiSLDesignerControl();

mycustomwindow.add(_StiDesigneControl);

this code will occurred each time i click "open designer" button.

Regards,
Jalal
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Toolbar disappear after first time

Post by Alex K. »

Hello Jalal,

We made some improvements in that direction. Please check the latest prerelease build.
If the issue is still present, please send us a sample project for analysis.

Thank you.
Jalal
Posts: 66
Joined: Sat Oct 09, 2010 4:10 am
Location: Palestine

Toolbar disappear after first time

Post by Jalal »

Hello,

I have the last prerelase ( Stimulsoft Reports.Silverlight 2011.04.12 Trial ), however i still face this problem. Code is simple, each time i just create new instance of StiSLDesignerControl and add it to new a window :

stiSLDesignerControl = new StiSLDesignerControl();
editPrintWindow.Add(stiSLDesignerControl);
editPrintWindow.Show();

Before this code, i added a new style in order to fix grid background ( All sti grids inherits from my application grid), so i use this style to fix this issue temporarily :

Style StiStyle = new Style(typeof(Grid));
StiStyle.Setters.Add(new Setter(Grid.BackgroundProperty, new SolidColorBrush(Colors.Transparent)));
editPrintWindow.LayoutRoot.Resources.Add(typeof(Grid), StiStyle);
stiSLDesignerControl.Resources.Add(typeof(Grid), StiStyle);

Regards,
Jalal
Anton Lozovskiy
Posts: 135
Joined: Tue Aug 11, 2009 9:38 am

Toolbar disappear after first time

Post by Anton Lozovskiy »

Hello,

We can not reproduce the problem. Please send us video which step-by-step demonstrates how the problem can be reproduced.

Thank you.
Jalal
Posts: 66
Joined: Sat Oct 09, 2010 4:10 am
Location: Palestine

Toolbar disappear after first time

Post by Jalal »

Hello,

Thanks for you reply. I just open a new ticket and submit it with attached sample.

please do the following steps to see what i mean :

1) press first time on 'Test' button, it works fine ( i can see the left toolbar)
2) close the window
3) press again on 'Test' button : left toolbar is disappear!!

Regards,
Jalal
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Toolbar disappear after first time

Post by Alex K. »

Hello,

The problem is fixed. The patch is available in prerelease build of on 19.04.2011.

Thank you.
Jalal
Posts: 66
Joined: Sat Oct 09, 2010 4:10 am
Location: Palestine

Toolbar disappear after first time

Post by Jalal »

Hello,

It works good now!

Regards,
Jalal
Andrew
Posts: 4107
Joined: Fri Jun 09, 2006 3:58 am

Toolbar disappear after first time

Post by Andrew »

Great!

Have a nice day!
Locked