mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 03:36:44 +02:00
* PowerRename cleanup * Extract ExplorerItem as a UserControl * Add VisualStateManager * UI fixes * Implement error UI logic Highlight items that couldn't be renamed and add error message flyout * Update src/modules/powerrename/lib/PowerRenameManager.cpp Address PR comment Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com> * Update src/modules/powerrename/lib/PowerRenameManager.cpp Address PR comment Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com> * Folder max path is 247 * Implement State() properly Co-authored-by: Niels Laute <niels.laute@live.nl> Co-authored-by: Jay <65828559+Jay-o-Way@users.noreply.github.com>
18 lines
555 B
Plaintext
18 lines
555 B
Plaintext
namespace PowerRenameUI
|
|
{
|
|
[default_interface] runtimeclass ExplorerItem : Microsoft.UI.Xaml.Controls.UserControl, Microsoft.UI.Xaml.Data.INotifyPropertyChanged
|
|
{
|
|
ExplorerItem();
|
|
ExplorerItem(Int32 id, String original, String renamed, Int32 type, UInt32 depth, Boolean checked);
|
|
Int32 Id { get; };
|
|
String IdStr { get; };
|
|
String Original;
|
|
String Renamed;
|
|
Double Indentation { get; };
|
|
String ImagePath { get; };
|
|
Int32 Type;
|
|
Boolean Checked;
|
|
Int32 State;
|
|
}
|
|
}
|