mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-14 17:42:47 +01:00
16 lines
521 B
C#
16 lines
521 B
C#
using TweetDuck.Dialogs;
|
|
using TweetDuck.Management;
|
|
using TweetLib.Core.Application;
|
|
|
|
namespace TweetDuck.Application {
|
|
sealed class MessageDialogs : IAppMessageDialogs {
|
|
public void Information(string caption, string text, string buttonAccept) {
|
|
FormManager.RunOnUIThreadAsync(() => FormMessage.Information(caption, text, buttonAccept));
|
|
}
|
|
|
|
public void Error(string caption, string text, string buttonAccept) {
|
|
FormManager.RunOnUIThreadAsync(() => FormMessage.Error(caption, text, buttonAccept));
|
|
}
|
|
}
|
|
}
|