SlaveWindow.axaml 936 B

123456789101112131415161718192021222324
  1. <Window xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:titlebars="clr-namespace:fis;assembly=fis"
  6. mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
  7. x:Class="fis.SlaveWindow"
  8. Title="FLYINSONO">
  9. <Grid>
  10. <Border Name="WindowBorder" BorderBrush="#BFBFBF" BorderThickness="1">
  11. <Grid>
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="32"/>
  14. <RowDefinition Height="*"/>
  15. </Grid.RowDefinitions>
  16. <Grid Grid.Row="0">
  17. <titlebars:WindowsTitleBar Name="WinTitleBar" IsSeamless="True"/>
  18. <titlebars:MacosTitleBar Name="MacTitleBar" IsSeamless="False"/>
  19. </Grid>
  20. <Border Grid.Row="1" BorderThickness="0" x:Name="BrowserBorder"/>
  21. </Grid>
  22. </Border>
  23. </Grid>
  24. </Window>