mirror of
https://github.com/Ylianst/MeshCentralRouter
synced 2025-12-06 00:13:33 +00:00
21 lines
571 B
C#
21 lines
571 B
C#
using System;
|
|
using System.IO;
|
|
using System.Drawing;
|
|
using System.Reflection;
|
|
using System.Windows.Forms;
|
|
|
|
namespace MeshCentralRouter
|
|
{
|
|
public partial class MappingHelpForm : Form
|
|
{
|
|
public MappingHelpForm()
|
|
{
|
|
InitializeComponent();
|
|
|
|
// Load customizations
|
|
FileInfo selfExe = new FileInfo(Assembly.GetExecutingAssembly().Location);
|
|
try { helpPictureBox.Image = (Bitmap)Image.FromFile(Path.Combine(selfExe.Directory.FullName, @"customization\help.png")); } catch (Exception) { }
|
|
}
|
|
}
|
|
}
|