THUAI8/interface/AvaloniaUI_debug_interface/debug_interface/Views/MapView.axaml

19 lines
655 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.

<!-- MapView.axaml -->
<UserControl
x:Class="debug_interface.Views.MapView"
xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:models="using:debug_interface.Models"
xmlns:vm="using:debug_interface.ViewModels"
mc:Ignorable="d">
<Grid>
<!-- 使用空的Grid将在代码中填充 -->
<Grid Name="MapGrid" />
<!-- Character Positions Canvas -->
<Canvas Name="CharacterCanvas" Background="Transparent" />
</Grid>
</UserControl>