mirror of
https://github.com/ZuneDev/Xune.git
synced 2026-07-27 13:13:10 -07:00
46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
using Microsoft.Iris.Render;
|
|
using SkiaSharp.Views.Desktop;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using System.Windows.Data;
|
|
using System.Windows.Documents;
|
|
using System.Windows.Input;
|
|
using System.Windows.Media;
|
|
using System.Windows.Media.Imaging;
|
|
using System.Windows.Navigation;
|
|
using System.Windows.Shapes;
|
|
|
|
namespace Xune.Wpf
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for MainWindow.xaml
|
|
/// </summary>
|
|
public partial class MainWindow : Window
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
|
|
Canvas.PaintSurface += Canvas_PaintSurface;
|
|
}
|
|
|
|
private void Canvas_PaintSurface(object sender, SKPaintSurfaceEventArgs e)
|
|
{
|
|
// Initialize UI framework
|
|
if (Microsoft.Iris.Application.IsInitialized || Microsoft.Iris.Application.IsInitializing)
|
|
{
|
|
Canvas.PaintSurface -= Canvas_PaintSurface;
|
|
return;
|
|
}
|
|
|
|
Microsoft.Iris.Application.Initialize(e.Surface, new WpfRenderWindow(this));
|
|
Microsoft.Iris.Application.LoadMarkup(@"file://D:\Repos\yoshiask\ZuneUIXTools\test\testA.uix");
|
|
}
|
|
}
|
|
}
|