Files
flowframes/CodeLegacy/Forms/BigPreviewForm.cs
2025-12-23 22:56:05 +01:00

31 lines
616 B
C#

using System;
using System.Drawing;
using System.Windows.Forms;
using Flowframes.Ui;
namespace Flowframes.Forms
{
public partial class BigPreviewForm : Form
{
public BigPreviewForm()
{
InitializeComponent();
}
private void BigPreviewForm_Load(object sender, EventArgs e)
{
}
public void SetImage (Image img)
{
picBox.Image = img;
}
private void BigPreviewForm_FormClosing(object sender, FormClosingEventArgs e)
{
InterpolationProgress.bigPreviewForm = null;
}
}
}