2020-11-23 16:51:05 +01:00
|
|
|
|
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;
|
2021-04-22 16:15:17 +02:00
|
|
|
|
using Flowframes.UI;
|
2020-11-23 16:51:05 +01:00
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
{
|
2021-04-22 16:15:17 +02:00
|
|
|
|
InterpolationProgress.bigPreviewForm = null;
|
2020-11-23 16:51:05 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|