mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-02-02 06:17:34 +00:00
19 lines
399 B
C#
19 lines
399 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using ShiftOS.Engine;
|
|||
|
|
|||
|
namespace ShiftOS.Wpf
|
|||
|
{
|
|||
|
class WpfInfoboxFrontend : IInfobox
|
|||
|
{
|
|||
|
public void Open(string title, string msg)
|
|||
|
{
|
|||
|
var inf = new Applications.Infobox(title, msg);
|
|||
|
AppearanceManager.SetupDialog(inf);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|