mirror of
https://github.com/vinaypamnani/wmie2.git
synced 2026-01-03 07:00:00 +01:00
27 lines
551 B
C#
27 lines
551 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 WmiExplorer
|
|
{
|
|
|
|
public sealed partial class Form_ShowMof : Form
|
|
{
|
|
public Form_ShowMof(string mofText)
|
|
{
|
|
InitializeComponent();
|
|
textBoxShowMOF.Text = "\r\n" + mofText;
|
|
}
|
|
|
|
private void buttonCloseMOF_Click(object sender, EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
}
|
|
}
|