我有一个可以运行的小图形引擎,但是我无法输出到窗口。我想将颜色代码列表作为整数呈现在窗口上。
我尝试使用WPF,但这不适用于.NET Core 2.2。我也尝试过Avalonia,但无法使其与WritableBitmaps一起使用。
我希望它能像这样工作:
int width = 100;
int height = 100;
// The pixel array contains hex color values for exampe: 0xffff0000 for red
int[] pixels = new int[width * height];
// Initialize the window (Only an example)
Window.Init(width, height);
Window.Show();
// Simplified version of my loop
while(true) {
// Now i would like to update the window (Only an example)
Window.Update(pixels);
}