ShiftOS_TheReturn/ShiftOS.Wpf/WpfInfoboxFrontend.cs

19 lines
399 B
C#
Raw Normal View History

2017-01-08 09:57:10 -05:00
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);
}
}
}