19 lines
655 B
XML
19 lines
655 B
XML
<!-- 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> |