Profile Picture

Splash Screen

Posted By Pawel Pietrzak 6 Years Ago
Author
Message
Pawel Pietrzak
Question Posted 6 Years Ago
View Quick Profile
Forum Newbie

Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)

Group: Forum Members
Last Active: 6 Years Ago
Posts: 4, Visits: 40
Hi,
I'm using NLayeredWindow as Splash Screen in my app.
Earlier I had always Image with a background (GIF files), now I got new issue: create Splash with transparent background (GIF is with transparency background). I founded properties for NLayeredWindow -> "Splashwindow.Transparent = true;" But this doesn't work for me...
Is it possible to do it?

The code which I'm using below:

System.Drawing.Bitmap bmp = Properties.Resources.Splash;
SplashWindow = new Nevron.UI.WinForm.Controls.NLayeredWindow();
Splashwindow.Moveable = false;
Splashwindow.BackgroundImage = bmp as System.Drawing.Image;
System.Drawing.Point centerLocation = Nevron.UI.NUISystem.GetCenterLocation(System.Windows.Forms.Screen.PrimaryScreen.Bounds, Splashwindow.BackgroundImage.Size);
Splashwindow.ShowWindow(centerLocation);

Best regards,
Pawel

Nevron Support
Posted 6 Years Ago
View Quick Profile
Supreme Being

Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)

Group: Forum Members
Last Active: Last Year
Posts: 3,039, Visits: 3,746
Hi Pawel,

If your gif image has transparent background it should be displayed as it is regardless of the Transparent property.
Please, make sure that the image has transparent background.
Just for the check you can try with some of your old images to make sure that the problem is in the image.

Please, let us know if the problem persist.

Best Regards,
Nevron Support Team



Pawel Pietrzak
Posted 6 Years Ago
View Quick Profile
Forum Newbie

Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)Forum Newbie (0 reputation)

Group: Forum Members
Last Active: 6 Years Ago
Posts: 4, Visits: 40
Hi, I did find the solution. I used:
this.TransparencyKey = (BackColor);

Br,
Pawel



Similar Topics


Reading This Topic