protected override void Initialize()
        {
            var splashScreen = new SplashScreen("splashscreen.png");

            splashScreen.Show(false);
            LibVLCSharpCore.Initialize();
            InitializeLogging();
            base.Initialize();
            splashScreen.Close(TimeSpan.Zero);
        }
Example #2
0
 protected override void Initialize()
 {
     InitializeLogging();
     LibVLCSharpCore.Initialize();
     base.Initialize();
 }