Files
HLib/Alert/FullScreenAlertUxer.cs
2026-06-01 13:23:34 +09:00

31 lines
753 B
C#

using KssSmaPlaLib.Alert.Gamen;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace KssSmaPlaLib.Alert
{
public static class FullScreenAlertUxer
{
public static void ShowFullScreenAlert(
Form orner,
string message,
DateTime dateTime,
bool kyoretsu = true,
int autoCloseSec = 0)
{
using (var alert = new AlertForm(
message,
dateTime,
kyoretsu, //true,
autoCloseSec))
{
alert.ShowDialog(orner); // モーダルで前面確実化
}
}
}
}