12 lines
434 B
C#
12 lines
434 B
C#
using System.Windows;
|
|
|
|
namespace CodeContextGenerator.Interfaces;
|
|
|
|
public interface IUIService
|
|
{
|
|
string ShowFolderBrowserDialog(string initialDirectory = null);
|
|
bool ShowOpenProjectFileDialog(out string selectedPath);
|
|
bool ShowSaveFileDialog(string defaultFileName, string initialDirectory, out string savePath);
|
|
void ShowMessage(string message, string title, MessageBoxImage icon = MessageBoxImage.Information);
|
|
}
|