UserWindow.xaml 2.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <Window x:Class="NEIntelligentControl2.Windows.UserWindow"
  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:NEIntelligentControl2.Windows"
  7. mc:Ignorable="d"
  8. Title="用户" Height="450" Width="350" WindowStartupLocation="CenterScreen" ShowInTaskbar="False" ResizeMode="NoResize" WindowStyle="None" Background="{x:Null}" AllowsTransparency="True">
  9. <Window.Resources>
  10. <ControlTemplate x:Key="CloseButton">
  11. <ControlTemplate.Triggers>
  12. <Trigger Property="IsMouseOver" Value="True">
  13. <Setter TargetName="p1" Property="Path.Fill" Value="#FFD81E06"/>
  14. </Trigger>
  15. </ControlTemplate.Triggers>
  16. <Viewbox>
  17. <Canvas Width="1024" Height="1024" Background="#01FFFFFF">
  18. <Path x:Name="p1" Data="M671.830688 511.699001l319.059377-319.059377c43.945914-43.945914 43.945914-115.583774 0-159.529688-43.945914-43.945914-115.583774-43.945914-159.529688 0l-319.059377 319.059377-319.059377-319.059377c-43.945914-43.945914-115.583774-43.945914-159.529688 0-43.945914 43.945914-43.945914 115.583774 0 159.529688l319.059377 319.059377-319.059377 319.059377c-43.945914 43.945914-43.945914 115.583774 0 159.529688 43.945914 43.945914 115.583774 43.945914 159.529688 0l319.059377-319.059377 319.059377 319.059377c43.945914 43.945914 115.583774 43.945914 159.529688 0 43.945914-43.945914 43.945914-115.583774 0-159.529688L671.830688 511.699001z" Fill="#FF404040"/>
  19. </Canvas>
  20. </Viewbox>
  21. </ControlTemplate>
  22. </Window.Resources>
  23. <Window.Effect>
  24. <DropShadowEffect ShadowDepth="0" RenderingBias="Quality" BlurRadius="7"/>
  25. </Window.Effect>
  26. <Border Margin="5" Background="WhiteSmoke" CornerRadius="7">
  27. <Grid>
  28. <ContentControl Width="23" Height="23" Template="{StaticResource CloseButton}" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="10" MouseLeftButtonUp="ContentControl_MouseLeftButtonUp"/>
  29. <Frame x:Name="_Frame" NavigationUIVisibility="Hidden"/>
  30. </Grid>
  31. </Border>
  32. </Window>