25 lines
584 B
C#
25 lines
584 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.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using OwnMessageBoxes;
|
|
|
|
namespace Test_OwnMessageBox
|
|
{
|
|
public partial class Form1 : Form
|
|
{
|
|
public Form1()
|
|
{
|
|
InitializeComponent();
|
|
|
|
OwnMessageBox omb = new OwnMessageBox();
|
|
OwnMessageBox.Show("Mitteilungstext", "Titel", MessageBoxButtons.OK, SystemIcons.Information, new OwnMessageBox());
|
|
}
|
|
}
|
|
}
|