-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ファイル一覧をCSV型式でエクスポートするように。(win32rebootディレクトリの場合は親ディレクトリ名も含める)
- Loading branch information
Showing
13 changed files
with
233 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// ----------------------------------------------------------------------- | ||
// <copyright file="IProgressContentDialogService.cs" company="Logue"> | ||
// Copyright (c) 2021 Masashi Yoshikawa All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
// </copyright> | ||
// ----------------------------------------------------------------------- | ||
|
||
using System.Threading.Tasks; | ||
|
||
namespace NgsPacker.Services | ||
{ | ||
public interface IProgressContentDialogService | ||
{ | ||
Task ShowAsync(); | ||
void Hide(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using NgsPacker.Views; | ||
using System.Threading.Tasks; | ||
|
||
namespace NgsPacker.Services | ||
{ | ||
public class ProgressContentDialogService : IProgressContentDialogService | ||
{ | ||
private ProgressContentDialog contentDialog; | ||
|
||
public ProgressContentDialogService() | ||
{ | ||
contentDialog = new(); | ||
} | ||
|
||
public async Task ShowAsync() | ||
{ | ||
_ = await contentDialog.ShowAsync(); | ||
} | ||
|
||
public void Hide() | ||
{ | ||
contentDialog.Hide(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.