Files
fluid-explorer/MainWindow.xaml
T

15 lines
560 B
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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>