filmov
tv
C#: How to Create Custom Shaped Splash Screen in Visual Studio
Показать описание
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
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
Комментарии