mirror of
https://github.com/Gericom/EveryFileExplorer.git
synced 2025-06-19 17:35:45 -04:00
31 lines
639 B
C#
31 lines
639 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 ThemeViewer : Form
|
|
{
|
|
ThemeFile theme;
|
|
public ThemeViewer(ThemeFile themeFile)
|
|
{
|
|
theme = themeFile;
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void ThemeViewer_Load(object sender, EventArgs e)
|
|
{
|
|
topTextureImage.Image = theme.GetTopTexture();
|
|
bottomTextureImage.Image = theme.GetBottomTexture();
|
|
}
|
|
|
|
|
|
|
|
}
|
|
}
|