mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-19 01:15:36 -04:00
27 lines
607 B
C#
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();
|
|
}
|
|
}
|
|
}
|