Skip to content

jimsungi/Wpf-Splash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

v0.001

TwSplash (Tiger-Word-Splash)

TwSplash, an WPF splash window class, is an .NET Wpf splash windows class. It is designed for my WPF desktop publish app, but can be used for other application.

It's very early stage, so it's not helpful yet. Only for someone to think about splash design pattern, can get some idea (and only idea).

A basic usage is following:

(한국어) TwSplash는 개인적으로 만들고 있는 WPF DTP 프로그램에서 사용할 Splash 클래스입니다. 아직 디자인 중이라 별 도움이 안되겠지만, 디자인 패턴을 찾고 있는 분이라면 아이디어 정도는 도움이 될 것입니다. 사용법은 아래와 같습니다.

        public App()
        {
            Startup += (sender, args) =>
            {
                // Type1 : Use WpfApp1.Splash As SplashWindow
                com.tigerword.twsplash.Splash
                .Create()
                .UseSplash<WpfApp1.Splash>()
                .UseWindow<WpfApp1.MainWindow>()
                .Wait(4000)
                .Run();
                // @TODO Type2 : Use Spash - Default Splash (with default splash image)  As SplashWindow
//                com.tigerword.twsplash.Splash
//.UseDefaultSplash()
//.UseWindow<WpfApp1.MainWindow>()
//.Wait(4000)
//.Run();
                // @TODO Type3 : Use Image (with default splash window) As SplashWindow
//                com.tigerword.twsplash.Splash
//.UseImage()
//.UseWindow<WpfApp1.MainWindow>()
//.Wait(4000)
//.Run();
            };
        }

References

About

A Class to implement Splash Window

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages