Guest User

Untitled

a guest
Jul 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <Window x:Class="Walterlv.Demo.MainWindow"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:interop="clr-namespace:Walterlv.Demo.Interop"
  5. mc:Ignorable="d" Title="AboutDlg" Height="350" Width="525"
  6. interop:WindowBlur.IsEnabled="True"
  7. Background="Transparent">
  8. </Window>
  9.  
  10. public class MainWindow : Window
  11. {
  12. public MainWindow()
  13. {
  14. InitializeComponent();
  15. WindowBlur.SetIsEnabled(this, true);
  16. }
  17. }
Add Comment
Please, Sign In to add comment