C#: How to Create Custom Shaped Splash Screen in Visual Studio

preview_player
Показать описание
This video explains how to make a Splash Screen for your software using C# (C Sharp) in Visual Studio dot-net. The time is controlled using Timer tool that's easily customized.

Making a splash screen (Welcome window/screen) is an easy one but little bit confusing when it comes to a transparent or unshaped window/ wizard.

This video will help you to understand how to hide the borders and to make the background color into transparent in a windows form application.

Code for Splash Screen Load Event (Form 1)
-----------------------------------------------------------------------
this.FormBorderStyle = FormBorderStyle.None;
this.Width = this.BackgroundImage.Width;
this.Height = this.BackgroundImage.Height;

Code for Splash Screen Timer_Tick Event (Form 1)
-----------------------------------------------------------------------
timer1.Start();
this.Close();

Note: 2d part of of the tutorial is under process, Subscribe to get notified when finished

Related Searches
» How to make Splash screen in any shape
» How to create windows form splash screen in any shape using C#
» Making a windows from application not in a rectangular shape
» How can I make my windows form transparent (C# language)
» How to set timer in Visual C# for a windows form application
» How to Create unShaped form in CSharp
Рекомендации по теме
Комментарии
Автор

SiR Can U Describe Clearly about Form1 CoDing

rahatbutt
Автор

thanks for the tutorial but can you make the splash screen disappear slowly like its become blurry or fading before entering the main form?

asthreacalinao
Автор

2017 and still using visual studio 2008...

frederikbahnsen
Автор

and what about visual basic... is this

anujbhaskar
Автор

Because It Was not clear in youR vedio

rahatbutt
Автор

would be a nice tutorial if not for the annoying music, just skipped through because of the music in the background

BOWEN