Initial commit: FluidExplorer:从零实现的 WinUI 3 文件资源管理器替代品(Mica、命令栏、面包屑)

This commit is contained in:
WpyQwq
2026-09-19 11:54:03 +08:00
commit 5780fde61a
60 changed files with 15035 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<Window
x:Class="FluidExplorer.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:views="using:FluidExplorer.Views"
Title="文件资源管理器">
<!--
Window 里刻意不放任何 x:Bind:WinUI 为带 Converter 的 x:Bind 生成代码时要求绑定根是
FrameworkElement,而 Window 不是。所有界面内容都在 ShellView 里。
-->
<views:ShellView x:Name="Shell" />
</Window>