mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-16 16:37:48 +01:00
37 lines
763 B
C#
37 lines
763 B
C#
|
|
using Flowframes.Main;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using System.Data;
|
|||
|
|
using System.Drawing;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using System.Windows.Forms;
|
|||
|
|
|
|||
|
|
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)
|
|||
|
|
{
|
|||
|
|
InterpolateUtils.bigPreviewForm = null;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|