Files
i2p 773d05f8f1
Pulsar .NET 9.0 Windows Release / build (push) Waiting to run
Mirror to Codeberg and Gitea / mirror (push) Waiting to run
initial commit
2026-08-27 10:57:58 -06:00

38 lines
930 B
C#

using Pulsar.Server.Forms.DarkMode;
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;
namespace Pulsar.Server.Forms
{
public partial class FrmTaskMessageBox : Form
{
public FrmTaskMessageBox()
{
InitializeComponent();
DarkModeManager.ApplyDarkMode(this);
ScreenCaptureHider.ScreenCaptureHider.Apply(this.Handle);
}
private void FrmTaskMessageBox_Load(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
FrmMain frm = Application.OpenForms["FrmMain"] as FrmMain;
if (frm != null)
{
frm.AddTask("Message Box", TTextBox.Text, MTextBox.Text);
}
}
}
}