asyvix

SelectedScreenCaptureXAML

Jul 2nd, 2017
950
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 1.05 KB | None | 0 0
  1. <Window x:Name="window_cm_QickCapture" x:Class="NeXT.Windows.ClusterMenuServices.cm_QuickCapture"
  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.        
  7.        xmlns:w="clr-namespace:NeXT.Functions.Class"
  8.        
  9.        xmlns:local="clr-namespace:NeXT.Windows.ClusterMenuServices"
  10.        mc:Ignorable="d"
  11.        WindowState="Maximized"
  12.        WindowStyle="None"
  13.        Opacity="0.3"
  14.        AllowsTransparency="True"
  15.        PreviewMouseDown="Window_MouseDown"
  16.        PreviewMouseMove="Window_MouseMove">
  17.     <Window.Background>
  18.         <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
  19.             <GradientStop Color="Black" Offset="0"/>
  20.             <GradientStop Color="#FF74E6FF" Offset="1"/>
  21.         </LinearGradientBrush>
  22.     </Window.Background>
  23.     <Canvas x:Name="cnv" />
  24. </Window>
Advertisement