mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-25 12:49:26 +01:00
31 lines
616 B
C#
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;
|
|
}
|
|
}
|
|
}
|