Revert "Revert "added new view""

This reverts commit 91e35826f0.
This commit is contained in:
Koisu 2025-06-20 12:40:20 -07:00
parent 670dd1c23e
commit 39366b7a69
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,9 @@
<Window
x:Class="namespace Flow.Launcher.Plugin.Explorer.Views.RenameFile"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Rename A file" Height="350" Width="525">
<Grid>
<Button Content="Open Window" Click="ButtonClicked" Height="25" HorizontalAlignment="Left" Margin="379,264,0,0" Name="button1" VerticalAlignment="Top" Width="100" />
</Grid>
</Window>

View file

@ -0,0 +1,8 @@
using System;
namespace Flow.Launcher.Plugin.Explorer.Views;
public partial class RenameFile
{
}