15 lines
560 B
XML
15 lines
560 B
XML
<?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>
|