SuspensionWindow.xaml 849 B

12345678910111213141516
  1. <Window x:Class="MvvmScaffoldFrame48.WPFFroms.SuspensionWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:local="clr-namespace:MvvmScaffoldFrame48.WPFFroms"
  7. mc:Ignorable="d"
  8. Title="SuspensionWindow" WindowStyle="None" ResizeMode="NoResize" Topmost="True"
  9. AllowsTransparency="True" Background="Transparent"
  10. SizeToContent="WidthAndHeight">
  11. <Grid>
  12. <Border Background="White" BorderBrush="Gray" BorderThickness="1" CornerRadius="5">
  13. <TextBlock Text="悬浮窗口内容" Padding="20" Margin="10"/>
  14. </Border>
  15. </Grid>
  16. </Window>