Delete ErrorDialogPresenter.cs

This commit is contained in:
S T Chan 2018-05-25 20:57:25 -04:00 committed by GitHub
parent 3dcf0a1400
commit 0857d4698b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,41 +0,0 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using APICodePack = Microsoft.WindowsAPICodePack.Dialogs;
namespace PdfScribeCore
{
public class ErrorDialogPresenter : TaskDialogPresenter
{
protected override APICodePack.TaskDialogStandardIcon DefaultTaskIcon
{
get { return APICodePack.TaskDialogStandardIcon.Error; }
}
public ErrorDialogPresenter()
: base()
{
}
/// <summary>
/// Ctor that shows the
/// task dialog immediately
/// </summary>
/// <param name="captionText">Text that goes in the window caption</param>
/// <param name="instructionText">Instructional text (Appears next to the icon)</param>
/// <param name="messageText">Smaller message detail text at bottom</param>
public ErrorDialogPresenter(String captionText,
String instructionText,
String messageText) :
base(captionText, instructionText, messageText)
{
}
}
}