mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-22 08:02:24 +08:00
53e104e858
* [PowerRename] Disable AnimatedIcon (check mark) for CheckBox to prevent crashes * [PowerRename] Implement lightweight ExplorerItemsSource/VM
22 lines
765 B
Plaintext
22 lines
765 B
Plaintext
import "ExplorerItem.idl";
|
|
import "ExplorerItemsSource.idl";
|
|
import "PatternSnippet.idl";
|
|
|
|
namespace PowerRenameUI
|
|
{
|
|
[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; };
|
|
|
|
ExplorerItemsSource ExplorerItems { get; };
|
|
Windows.Foundation.Collections.IObservableVector<PatternSnippet> SearchRegExShortcuts { get; };
|
|
Windows.Foundation.Collections.IObservableVector<PatternSnippet> DateTimeShortcuts { get; };
|
|
|
|
String OriginalCount;
|
|
String RenamedCount;
|
|
}
|
|
}
|