Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
evaristocuesta authored Dec 24, 2020
1 parent e6a9f73 commit 6bfcf67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The aim of this project is to offer a library with an interface to easily inject

To use this library, there are a few options:

- Download this repository
- Download the [Github repository](https://github.com/evaristocuesta/MessageDialogManagerLib)
- Use the [MessageDialogManagerLib Nuget Package](https://nuget.org/packages/MessageDialogManagerLib/)

To use this library, the WPF application has to use [Mahapps.Metro](https://mahapps.com/).
Expand All @@ -37,7 +37,7 @@ public interface IMessageDialogManager
/// <param name="title">Sets the title of the dialog</param>
/// <param name="initialPath">Sets the initial path of the dialog</param>
/// <returns>Returns if a folder has been selected</returns>
bool ShowFolderBrowser(string title, string initialPath);
bool ShowFolderBrowser(string title, string initialPath, bool allowMultiSelect = false);

/// <summary>
/// Gets the selected folder
Expand All @@ -51,7 +51,7 @@ public interface IMessageDialogManager
/// <param name="initialPath">Sets the initial path of the dialog</param>
/// <param name="filter">Sets a filter to show only the files that meet the filter</param>
/// <returns>Returns if a file has been selected</returns>
bool ShowFileBrowser(string title, string initialPath, string filter);
bool ShowFileBrowser(string title, string initialPath, string filter, bool allowMultiSelect = false);

/// <summary>
/// Gets the selected file
Expand Down

0 comments on commit 6bfcf67

Please sign in to comment.