Migrated aurora-sharp-desktop to /aurora-sharp-desktop
This commit is contained in:
31
aurora-sharp-desktop/Aurora.gtk/Program.cs
Normal file
31
aurora-sharp-desktop/Aurora.gtk/Program.cs
Normal file
@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using LibVLCSharp.Forms.Shared;
|
||||
using Xamarin.Forms.Platform.GTK;
|
||||
|
||||
namespace Aurora.gtk
|
||||
{
|
||||
class MainClass
|
||||
{
|
||||
[STAThread]
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
Gtk.Application.Init();
|
||||
LibVLCSharpFormsRenderer.Init();
|
||||
DLToolkit.Forms.Controls.FlowListView.Init();
|
||||
|
||||
// For some reason, Xamarin does not pick the LibVLCSharp.Form.Platforms.Gtk assembly as a renderer assembly.
|
||||
// Add it manually.
|
||||
|
||||
//Also css doesn't work without adding the Xaml assembly
|
||||
global::Xamarin.Forms.Forms.Init(new[] { typeof(LibVLCSharp.Forms.Platforms.GTK.VideoViewRenderer).Assembly, typeof(Xamarin.Forms.Xaml.ArrayExtension).Assembly });
|
||||
|
||||
var app = new App();
|
||||
var window = new FormsWindow();
|
||||
window.LoadApplication(app);
|
||||
window.SetApplicationTitle("Aurora");
|
||||
window.Show();
|
||||
|
||||
Gtk.Application.Run();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user