24 lines
471 B
C#
24 lines
471 B
C#
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 skyscraper8.AnagramViewer
|
|
{
|
|
public partial class ImageViewer : Form
|
|
{
|
|
public ImageViewer(Image asImage)
|
|
{
|
|
InitializeComponent();
|
|
pictureBox1.Image = asImage;
|
|
this.Width = asImage.Width;
|
|
this.Height = asImage.Height;
|
|
}
|
|
}
|
|
}
|