EveryFileExplorer/3DS/UI/ThemeIconViewer.cs
Clienthax cc706770f0 Add support for 3ds theme .icn files.
Signed-off-by: Clienthax <clienthax@gmail.com>
2014-11-14 19:31:46 +00:00

27 lines
607 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.Windows.Forms;
namespace _3DS.UI
{
public partial class ThemeIconViewer : Form
{
ThemeIconFile themeIcon;
public ThemeIconViewer(ThemeIconFile themeIcon)
{
this.themeIcon = themeIcon;
InitializeComponent();
}
private void ThemeIconViewer_Load_1(object sender, EventArgs e)
{
pictureBox1.Image = themeIcon.getIconTexture();
}
}
}