PowerToys/src/modules/powerrename/PowerRenameUILib/MainWindow.idl

21 lines
774 B
Plaintext
Raw Normal View History

import "ExplorerItem.idl";
import "PatternSnippet.idl";
namespace PowerRenameUI
{
2022-08-15 21:47:11 +08:00
[default_interface] runtimeclass MainWindow : Microsoft.UI.Xaml.Window, Microsoft.UI.Xaml.Data.INotifyPropertyChanged
{
MainWindow();
Windows.Foundation.Collections.IObservableVector<String> SearchMRU { get; };
Windows.Foundation.Collections.IObservableVector<String> ReplaceMRU { get; };
Windows.Foundation.Collections.IObservableVector<ExplorerItem> ExplorerItems { get; };
Windows.Foundation.Collections.IObservableVector<PatternSnippet> SearchRegExShortcuts { get; };
Windows.Foundation.Collections.IObservableVector<PatternSnippet> DateTimeShortcuts { get; };
2022-08-15 21:47:11 +08:00
String OriginalCount;
String RenamedCount;
}
}