how do i force the splashpanel to stay displayed

hi all.
is it posible to force on the splashpanel not to close on a timer,but only when the user will click on it?

1 Reply

MW Melba Winshia Syncfusion Team July 16, 2007 10:35 AM UTC

Hi Shachar,

Thank you for your interest in Syncfusion Products.

If your intention is to close the splashpanel on clicking it and not on a timer then it can be

achieved by specifying the timer interval as infinity.


[C#]

this.splashPanel1.TimerInterval = -1;
private void splashPanel1_MouseClick_1(object sender, MouseEventArgs e)
{

this.splashPanel1.HideSplash(SplashCloseType.Done);
}


Please refer the sample in the below link which illustrates the above.



http://websamples.syncfusion.com/samples/Tools.Windows/64131/main.htm


If I have misunderstood your requirement, could you please explain me in detail, so that I can work

in depth and try to send a better solution?

Thanks,
Melba

Loader.
Up arrow icon