mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 12:18:50 +02:00
18 lines
452 B
Plaintext
18 lines
452 B
Plaintext
|
|
namespace PowerRenameUI
|
||
|
|
{
|
||
|
|
runtimeclass UIUpdates : Microsoft.UI.Xaml.Data.INotifyPropertyChanged
|
||
|
|
{
|
||
|
|
UIUpdates();
|
||
|
|
Boolean ShowAll;
|
||
|
|
Int32 ChangedExplorerItemId;
|
||
|
|
Boolean Checked;
|
||
|
|
void ToggleAll();
|
||
|
|
Boolean CloseUIWindow();
|
||
|
|
void CloseUIWindow(Boolean closeUIWindow);
|
||
|
|
Boolean ButtonRenameEnabled;
|
||
|
|
void Rename();
|
||
|
|
String OriginalCount;
|
||
|
|
String RenamedCount;
|
||
|
|
}
|
||
|
|
}
|