Beispiel #1
0
 static void Main()
 {
     System.Windows.Forms.Application.EnableVisualStyles();
     System.Windows.Forms.Application.SetCompatibleTextRenderingDefault(false);
     DpiAwareness.SetDpiAware(DpiAwareness.ProcessDpiAwareness.SystemAware);
     new MainForm(UnoGenerated).MainLoop();
 }
Beispiel #2
0
        public MainForm()
        {
            InitializeComponent();
            Controls.Add(_control);
            _control.Initialize(this);
            var dpi = DpiAwareness.GetDpi(Handle);

            _control.SetDensity((float)dpi);
            ClientSize = new Size((int)(375 * dpi), (int)(667 * dpi));

            try
            {
                var touch = new TouchEventAdapter(_control);

                touch.TouchDown += (sender, e) =>
                                   Bootstrapper.OnTouchDown(_control.CoreWindow, e.X, e.Y, e.Index);
                touch.TouchMove += (sender, e) =>
                                   Bootstrapper.OnTouchMove(_control.CoreWindow, e.X, e.Y, e.Index);
                touch.TouchUp += (sender, e) =>
                                 Bootstrapper.OnTouchUp(_control.CoreWindow, e.X, e.Y, e.Index);
            }
            catch
            {
                Console.Error.WriteLine("Failed to create TouchEventAdapter, touch-inputs are unavailable.");
            }

            FormClosing += (sender, e) => e.Cancel = _control.OnClosing();
            FormClosed  += (sender, e) => _control.OnClosed();
            Title        = GetAssemblyTitle();

            LoadApplication();
            Platform2.Internal.Application.Start();
        }
Beispiel #3
0
        public MainForm()
        {
            InitializeComponent();
            Controls.Add(_control);
            _control.Initialize(this);
            var dpi = DpiAwareness.GetDpi(Handle);

            _control.SetDensity((float)dpi);
            ClientSize   = new Size((int)(375 * dpi), (int)(667 * dpi));
            FormClosing += (sender, e) => e.Cancel = _control.OnClosing();
            FormClosed  += (sender, e) => _control.OnClosed();
            Title        = GetAssemblyTitle();

            LoadApplication();
            Platform2.Internal.Application.Start();
        }